summaryrefslogtreecommitdiff
path: root/ext/node/polyfills/https.ts
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2024-09-12 01:52:08 +0100
committerGitHub <noreply@github.com>2024-09-12 00:52:08 +0000
commitf794781ffba941085343b95dd5a9c1ad74a322a2 (patch)
tree395ad9feae6a3bf4078d0f03053eed8ce85b3396 /ext/node/polyfills/https.ts
parent8476bbff9af28408bc6a9b0a7b2303cb3803422e (diff)
feat(ext/node): expose ES modules for _ modules (#25588)
Exposes following modules: - `"node:_http_agent"` - `"node:_http_common"` - `"node:_http_outgoing"` - `"node:_http_server"` - `"node:_stream_duplex"` - `"node:_stream_passthrough"` - `"node:_stream_readable"` - `"node:_stream_transform"` - `"node:_stream_writable"` - `"node:_tls_common"` - `"node:_tls_wrap"`
Diffstat (limited to 'ext/node/polyfills/https.ts')
-rw-r--r--ext/node/polyfills/https.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/https.ts b/ext/node/polyfills/https.ts
index c1f1237b1..f60c5e471 100644
--- a/ext/node/polyfills/https.ts
+++ b/ext/node/polyfills/https.ts
@@ -11,7 +11,7 @@ import {
IncomingMessageForClient as IncomingMessage,
type RequestOptions,
} from "node:http";
-import { Agent as HttpAgent } from "ext:deno_node/_http_agent.mjs";
+import { Agent as HttpAgent } from "node:_http_agent";
import { createHttpClient } from "ext:deno_fetch/22_http_client.js";
import { type ServerHandler, ServerImpl as HttpServer } from "node:http";
import { validateObject } from "ext:deno_node/internal/validators.mjs";