diff options
author | Aaron O'Mullan <aaron.omullan@gmail.com> | 2021-04-05 18:40:24 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-04-05 18:40:24 +0200 |
commit | 2aed322dd507a8568b6ee6f4897e9a8e3220f763 (patch) | |
tree | e9a45c0b7688a9881ea9ce132b92554ef2955ad6 /runtime/js/11_timers.js | |
parent | 284e6c303956e8ca20af63b4ecc045438a260fe6 (diff) |
refactor: convert ops to use serde_v8 (#10009)
This commit rewrites most of the ops to use "serde_v8" instead
of "json" serialization.
Diffstat (limited to 'runtime/js/11_timers.js')
-rw-r--r-- | runtime/js/11_timers.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/js/11_timers.js b/runtime/js/11_timers.js index 200c764b7..046609f75 100644 --- a/runtime/js/11_timers.js +++ b/runtime/js/11_timers.js @@ -10,7 +10,7 @@ } function opStartGlobalTimer(timeout) { - return core.jsonOpSync("op_global_timer_start", { timeout }); + return core.jsonOpSync("op_global_timer_start", timeout); } async function opWaitGlobalTimer() { @@ -22,7 +22,7 @@ } function sleepSync(millis = 0) { - return core.jsonOpSync("op_sleep_sync", { millis }); + return core.jsonOpSync("op_sleep_sync", millis); } // Derived from https://github.com/vadimg/js_bintrees. MIT Licensed. |