aboutsummaryrefslogtreecommitdiff
path: root/src/js/node/http2.ts
diff options
context:
space:
mode:
authorGravatar dave caruso <me@paperdave.net> 2023-08-21 23:39:56 -0700
committerGravatar GitHub <noreply@github.com> 2023-08-21 23:39:56 -0700
commit52802a4c556d7498d75d00e4fe4e45633f4283e8 (patch)
tree9d52b3c386ead79f02e8719c76f301ecfd058d25 /src/js/node/http2.ts
parent44e4d5852a1c31e1d124828fa6417d3d1884cdb2 (diff)
downloadbun-52802a4c556d7498d75d00e4fe4e45633f4283e8.tar.gz
bun-52802a4c556d7498d75d00e4fe4e45633f4283e8.tar.zst
bun-52802a4c556d7498d75d00e4fe4e45633f4283e8.zip
fix fsevents and stub for qwikcity (#4247)
* fix test * ok * cm * EE * remove the hack we didnt need
Diffstat (limited to 'src/js/node/http2.ts')
-rw-r--r--src/js/node/http2.ts2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/js/node/http2.ts b/src/js/node/http2.ts
index fce1a8c72..f8d5058c2 100644
--- a/src/js/node/http2.ts
+++ b/src/js/node/http2.ts
@@ -276,9 +276,11 @@ const sensitiveHeaders = Symbol.for("nodejs.http2.sensitiveHeaders");
function Http2ServerRequest() {
throwNotImplemented("node:http2 Http2ServerRequest", 887);
}
+Http2ServerRequest.prototype = {};
function Http2ServerResponse() {
throwNotImplemented("node:http2 Http2ServerResponse", 887);
}
+Http2ServerResponse.prototype = {};
export default {
constants,