diff options
Diffstat (limited to 'ext/node/polyfills/global.ts')
-rw-r--r-- | ext/node/polyfills/global.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/ext/node/polyfills/global.ts b/ext/node/polyfills/global.ts index f9cb9186f..2ab33921c 100644 --- a/ext/node/polyfills/global.ts +++ b/ext/node/polyfills/global.ts @@ -1,14 +1,14 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. // deno-lint-ignore-file no-var -import processModule from "internal:deno_node/polyfills/process.ts"; -import { Buffer as bufferModule } from "internal:deno_node/polyfills/buffer.ts"; +import processModule from "internal:deno_node/process.ts"; +import { Buffer as bufferModule } from "internal:deno_node/buffer.ts"; import { clearInterval, clearTimeout, setInterval, setTimeout, -} from "internal:deno_node/polyfills/timers.ts"; -import timers from "internal:deno_node/polyfills/timers.ts"; +} from "internal:deno_node/timers.ts"; +import timers from "internal:deno_node/timers.ts"; type GlobalType = { process: typeof processModule; |