diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2024-01-06 14:40:26 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-06 14:40:26 +0100 |
commit | d1706c2ac99eb82a937dff1c6a4c861aa24b1210 (patch) | |
tree | bdb517ef7770af12de1cf9be081be560b4ec0870 /ext/node/polyfills/console.ts | |
parent | bfd5f1598cc462b460791fdfca9bb6c2c69fec9b (diff) |
refactor: split runtime/98_global_scope.js (#21785)
Diffstat (limited to 'ext/node/polyfills/console.ts')
-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; |