convert to ESM

This commit is contained in:
Randall Schmidt
2021-07-05 14:17:21 -04:00
parent af1e977620
commit 45ca35f057
11 changed files with 52 additions and 48 deletions

View File

@ -1,4 +1,4 @@
class Headers {
export class Headers {
constructor(rawHeaders) {
this.rawHeaders = rawHeaders;
}
@ -29,5 +29,3 @@ class Headers {
return this.rawHeaders;
}
}
module.exports = Headers;