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 5bc96e54b..f6d655633 100644 --- a/runtime/js/30_os.js +++ b/runtime/js/30_os.js @@ -1,6 +1,6 @@ // Copyright 2018-2023 the Deno authors. All rights reserved. MIT license. -import { core, internals, primordials } from "ext:core/mod.js"; +import { core, primordials } from "ext:core/mod.js"; const ops = core.ops; import { Event, EventTarget } from "ext:deno_web/02_event.js"; const { @@ -105,8 +105,6 @@ function execPath() { return ops.op_exec_path(); } -internals.setExitHandler = setExitHandler; - export { env, execPath, |