add raw headers function

This commit is contained in:
Randall Schmidt 2020-11-28 11:02:55 -05:00
parent 077b92ebaa
commit 2e79048563

@ -22,6 +22,10 @@ class Headers {
has(name) { has(name) {
return !!this.get(name); return !!this.get(name);
} }
raw() {
return this.rawHeaders;
}
} }
module.exports = Headers; module.exports = Headers;