diff options
author | Ryan Dahl <ry@tinyclouds.org> | 2022-06-13 15:28:00 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-06-13 21:28:00 +0200 |
commit | 21dfeea3c48cf6101d71b39a1d2b0f9406818300 (patch) | |
tree | 0ef0627159ad366d1755081247776b9759b14017 /ext/web/02_timers.js | |
parent | e6218d9d23f71fe5c42dbd76d3016b147892b476 (diff) |
Remove unstable Deno.sleepSync (#14719)
Co-authored-by: David Sherret <dsherret@gmail.com>
Diffstat (limited to 'ext/web/02_timers.js')
-rw-r--r-- | ext/web/02_timers.js | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ext/web/02_timers.js b/ext/web/02_timers.js index edad89ace..a4ce33a18 100644 --- a/ext/web/02_timers.js +++ b/ext/web/02_timers.js @@ -28,10 +28,6 @@ return core.opSync("op_now"); } - function sleepSync(millis = 0) { - return core.opSync("op_sleep_sync", millis); - } - // --------------------------------------------------------------------------- /** @@ -372,7 +368,6 @@ clearInterval, handleTimerMacrotask, opNow, - sleepSync, refTimer, unrefTimer, }; |