compile to commonjs

This commit is contained in:
Randall Schmidt
2021-07-09 14:36:43 -04:00
parent 998d18ae84
commit 675ed9bbf2
7 changed files with 52 additions and 35 deletions

View File

@ -1,31 +0,0 @@
export class Headers {
constructor(rawHeaders) {
this.rawHeaders = rawHeaders;
}
entries() {
return Object.entries(this.rawHeaders)
.sort((e1, e2) => e1[0].localeCompare(e2[0]))
.map(([key, val]) => [key, val[0]]);
}
keys() {
return this.entries().map((e) => e[0]);
}
values() {
return this.entries().map((e) => e[1]);
}
get(name) {
return (this.rawHeaders[name.toLowerCase()] || [])[0] || null;
}
has(name) {
return !!this.get(name);
}
raw() {
return this.rawHeaders;
}
}