diff options
Diffstat (limited to 'runtime/js/06_util.js')
-rw-r--r-- | runtime/js/06_util.js | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/runtime/js/06_util.js b/runtime/js/06_util.js index 64ec4ba9b..199f710bc 100644 --- a/runtime/js/06_util.js +++ b/runtime/js/06_util.js @@ -1,9 +1,7 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. -import { core, primordials } from "ext:core/mod.js"; -const { - op_bootstrap_log_level, -} = core.ensureFastOps(); +import { primordials } from "ext:core/mod.js"; +import { op_bootstrap_log_level } from "ext:core/ops"; const { Promise, SafeArrayIterator, |