diff options
Diffstat (limited to 'runtime/js/30_os.js')
-rw-r--r-- | runtime/js/30_os.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/runtime/js/30_os.js b/runtime/js/30_os.js index 583449083..5bc96e54b 100644 --- a/runtime/js/30_os.js +++ b/runtime/js/30_os.js @@ -1,10 +1,8 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -const core = globalThis.Deno.core; +import { core, internals, primordials } from "ext:core/mod.js"; const ops = core.ops; -const internals = globalThis.__bootstrap.internals; import { Event, EventTarget } from "ext:deno_web/02_event.js"; -const primordials = globalThis.__bootstrap.primordials; const { Error, FunctionPrototypeBind, |