diff options
Diffstat (limited to 'runtime/js/40_fs_events.js')
-rw-r--r-- | runtime/js/40_fs_events.js | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/runtime/js/40_fs_events.js b/runtime/js/40_fs_events.js index 21d552111..9592b9f7d 100644 --- a/runtime/js/40_fs_events.js +++ b/runtime/js/40_fs_events.js @@ -1,15 +1,12 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { core, internals, primordials } from "ext:core/mod.js"; +import { op_fs_events_open, op_fs_events_poll } from "ext:core/ops"; const { BadResourcePrototype, InterruptedPrototype, } = core; const { - op_fs_events_open, - op_fs_events_poll, -} = core.ensureFastOps(); -const { ArrayIsArray, ObjectPrototypeIsPrototypeOf, PromiseResolve, |