add raw headers function

This commit is contained in:
Randall Schmidt 2020-11-28 11:02:55 -05:00
parent facda80789
commit a7fc94c3e9

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