diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-09-12 01:52:08 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-12 00:52:08 +0000 |
commit | f794781ffba941085343b95dd5a9c1ad74a322a2 (patch) | |
tree | 395ad9feae6a3bf4078d0f03053eed8ce85b3396 /ext/node/polyfills/tls.ts | |
parent | 8476bbff9af28408bc6a9b0a7b2303cb3803422e (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/tls.ts')
-rw-r--r-- | ext/node/polyfills/tls.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/node/polyfills/tls.ts b/ext/node/polyfills/tls.ts index a60469083..7d00bc6e5 100644 --- a/ext/node/polyfills/tls.ts +++ b/ext/node/polyfills/tls.ts @@ -5,8 +5,8 @@ // deno-lint-ignore-file prefer-primordials import { notImplemented } from "ext:deno_node/_utils.ts"; -import tlsCommon from "ext:deno_node/_tls_common.ts"; -import tlsWrap from "ext:deno_node/_tls_wrap.ts"; +import tlsCommon from "node:_tls_common"; +import tlsWrap from "node:_tls_wrap"; // openssl -> rustls const cipherMap = { |