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/http2.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/http2.ts')
| -rw-r--r-- | ext/node/polyfills/http2.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/node/polyfills/http2.ts b/ext/node/polyfills/http2.ts index f5d819bb7..20306584f 100644 --- a/ext/node/polyfills/http2.ts +++ b/ext/node/polyfills/http2.ts @@ -5,12 +5,12 @@ // deno-lint-ignore-file prefer-primordials import { notImplemented, warnNotImplemented } from "ext:deno_node/_utils.ts"; -import { EventEmitter } from "ext:deno_node/events.ts"; -import { Buffer } from "ext:deno_node/buffer.ts"; -import { Server, Socket, TCP } from "ext:deno_node/net.ts"; +import { EventEmitter } from "node:events"; +import { Buffer } from "node:buffer"; +import { Server, Socket, TCP } from "node:net"; import { TypedArray } from "ext:deno_node/internal/util/types.ts"; import { setStreamTimeout } from "ext:deno_node/internal/stream_base_commons.ts"; -import { FileHandle } from "ext:deno_node/fs/promises.ts"; +import { FileHandle } from "node:fs/promises"; import { kStreamBaseField } from "ext:deno_node/internal_binding/stream_wrap.ts"; import { addTrailers, serveHttpOnConnection } from "ext:deno_http/00_serve.js"; import { type Deferred, deferred } from "ext:deno_node/_util/async.ts"; |
