diff options
author | 2023-07-04 12:09:58 +0300 | |
---|---|---|
committer | 2023-07-04 02:09:58 -0700 | |
commit | 3d0ffc48cb2608ed696581e10cb082c68b56c6b9 (patch) | |
tree | 72bb50ad2491b4b7f1b0e0ee5de172cd59fbba1f /src/js | |
parent | bc7b5165beba1388a39215ccfa8e848e4982f1ed (diff) | |
download | bun-3d0ffc48cb2608ed696581e10cb082c68b56c6b9.tar.gz bun-3d0ffc48cb2608ed696581e10cb082c68b56c6b9.tar.zst bun-3d0ffc48cb2608ed696581e10cb082c68b56c6b9.zip |
[install] fix run-time module loading (#3510)
- fix version buffer confusion
- improve workaround to handle cached modules
fixes #3507
Diffstat (limited to 'src/js')
-rw-r--r-- | src/js/out/modules/node/http.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/js/out/modules/node/http.js b/src/js/out/modules/node/http.js index 955c83642..f07dcc2e0 100644 --- a/src/js/out/modules/node/http.js +++ b/src/js/out/modules/node/http.js @@ -1085,6 +1085,8 @@ var tokenRegExp = /^[\^_`a-zA-Z\-0-9!#$%&'*+.|~]+$/, METHODS = [ debug(`${NODE_HTTP_WARNING}\n`, "setMaxIdleHTTPParsers() is a no-op"); }, globalAgent, + ClientRequest, + OutgoingMessage, [Symbol.for("CommonJS")]: 0 }, http_default = defaultObject; export { |