diff options
Diffstat (limited to 'ext/node/polyfills/console.ts')
-rw-r--r-- | ext/node/polyfills/console.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/node/polyfills/console.ts b/ext/node/polyfills/console.ts index f811f1a86..f50b912a9 100644 --- a/ext/node/polyfills/console.ts +++ b/ext/node/polyfills/console.ts @@ -1,7 +1,7 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import { Console } from "internal:deno_node/polyfills/internal/console/constructor.mjs"; -import { windowOrWorkerGlobalScope } from "internal:runtime/js/98_global_scope.js"; +import { Console } from "internal:deno_node/internal/console/constructor.mjs"; +import { windowOrWorkerGlobalScope } from "internal:runtime/98_global_scope.js"; // Don't rely on global `console` because during bootstrapping, it is pointing // to native `console` object provided by V8. const console = windowOrWorkerGlobalScope.console.value; |