diff options
Diffstat (limited to 'ext/web/02_timers.js')
-rw-r--r-- | ext/web/02_timers.js | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/ext/web/02_timers.js b/ext/web/02_timers.js index 1a456f9bb..a4ce33a18 100644 --- a/ext/web/02_timers.js +++ b/ext/web/02_timers.js @@ -23,11 +23,9 @@ const { webidl } = window.__bootstrap; const { reportException } = window.__bootstrap.event; const { assert } = window.__bootstrap.infra; - // deno-lint-ignore camelcase - const { op_now } = Deno.core.ops; function opNow() { - return op_now.call(); + return core.opSync("op_now"); } // --------------------------------------------------------------------------- |