diff options
author | Aapo Alasuutari <aapo.alasuutari@gmail.com> | 2022-09-22 07:35:24 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-22 10:05:24 +0530 |
commit | 707e9e35804d9295996c5e86663209f14965d8f0 (patch) | |
tree | ff00d2e8bd51f17f9ac31a4d28aafd3aa7d7f539 /ext | |
parent | cc32a297da2d92983573a1cea1ca669d6139d77d (diff) |
feat(ops): Automatic fast ops creation (#15527)
Diffstat (limited to 'ext')
-rw-r--r-- | ext/web/02_timers.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/ext/web/02_timers.js b/ext/web/02_timers.js index 5d7ee49e0..7c0bc1e3a 100644 --- a/ext/web/02_timers.js +++ b/ext/web/02_timers.js @@ -31,7 +31,7 @@ const hrU8 = new Uint8Array(8); const hr = new Uint32Array(hrU8.buffer); function opNow() { - ops.op_now.fast(hrU8); + ops.op_now(hrU8); return (hr[0] * 1000 + hr[1] / 1e6); } |