diff options
Diffstat (limited to 'ext/web/02_timers.js')
-rw-r--r-- | ext/web/02_timers.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/web/02_timers.js b/ext/web/02_timers.js index 0687c9a71..2241e9614 100644 --- a/ext/web/02_timers.js +++ b/ext/web/02_timers.js @@ -1,12 +1,12 @@ // Copyright 2018-2024 the Deno authors. All rights reserved. MIT license. import { core, primordials } from "ext:core/mod.js"; -const { +import { op_now, op_sleep, op_timer_handle, op_void_async_deferred, -} = core.ensureFastOps(); +} from "ext:core/ops"; const { ArrayPrototypePush, ArrayPrototypeShift, |