From d1706c2ac99eb82a937dff1c6a4c861aa24b1210 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bartek=20Iwa=C5=84czuk?= Date: Sat, 6 Jan 2024 14:40:26 +0100 Subject: refactor: split runtime/98_global_scope.js (#21785) --- ext/node/polyfills/console.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'ext/node') 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; -- cgit v1.2.3