diff options
Diffstat (limited to 'ext/node')
-rw-r--r-- | ext/node/polyfills/console.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/node/polyfills/console.ts b/ext/node/polyfills/console.ts index 7c76ef24c..c72cfb160 100644 --- a/ext/node/polyfills/console.ts +++ b/ext/node/polyfills/console.ts @@ -4,7 +4,7 @@ // deno-lint-ignore-file prefer-primordials import { Console } from "ext:deno_node/internal/console/constructor.mjs"; -import { windowOrWorkerGlobalScope } from "ext:runtime/98_global_scope.js"; +import { windowOrWorkerGlobalScope } from "ext:runtime/98_global_scope_shared.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; |