diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2023-07-02 20:19:30 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-07-02 20:19:30 +0200 |
commit | 01f0d03ae82c422c1f9551f3bfbb57daac769ddc (patch) | |
tree | 4506903def90de3da497c81e217d70d62f380dab /ext/node/polyfills/_http_outgoing.ts | |
parent | 805497a9a50c3219f64f481feb72271b2fcd6790 (diff) |
refactor: rename built-in node modules from ext:deno_node/ to node: (#19680)
Closes https://github.com/denoland/deno/issues/19510
Diffstat (limited to 'ext/node/polyfills/_http_outgoing.ts')
-rw-r--r-- | ext/node/polyfills/_http_outgoing.ts | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/ext/node/polyfills/_http_outgoing.ts b/ext/node/polyfills/_http_outgoing.ts index 36e177acc..62d3af3c6 100644 --- a/ext/node/polyfills/_http_outgoing.ts +++ b/ext/node/polyfills/_http_outgoing.ts @@ -7,17 +7,17 @@ const core = globalThis.__bootstrap.core; import { getDefaultHighWaterMark } from "ext:deno_node/internal/streams/state.mjs"; import assert from "ext:deno_node/internal/assert.mjs"; -import EE from "ext:deno_node/events.ts"; -import { Stream } from "ext:deno_node/stream.ts"; -import { deprecate } from "ext:deno_node/util.ts"; -import type { Socket } from "ext:deno_node/net.ts"; +import EE from "node:events"; +import { Stream } from "node:stream"; +import { deprecate } from "node:util"; +import type { Socket } from "node:net"; import { kNeedDrain, kOutHeaders, // utcDate, } from "ext:deno_node/internal/http.ts"; import { notImplemented } from "ext:deno_node/_utils.ts"; -import { Buffer } from "ext:deno_node/buffer.ts"; +import { Buffer } from "node:buffer"; import { _checkInvalidHeaderChar as checkInvalidHeaderChar, _checkIsHttpToken as checkIsHttpToken, |