diff options
author | Bartek IwaĆczuk <biwanczuk@gmail.com> | 2022-09-27 22:11:11 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-09-27 22:11:11 +0200 |
commit | a344368603063bcb281e743f3810ca1e4e46e85d (patch) | |
tree | b1f01e491d648673b8d77ece48e200f66e09c2ed /runtime/js/90_deno_ns.js | |
parent | 980d65b4d0f26a841230acd662a1dcb3cf9c0247 (diff) |
feat: Stabilize Deno.refTimer() and Deno.unrefTimer() APIs (#16036)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r-- | runtime/js/90_deno_ns.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js index 200bf73c2..e7b21640a 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -112,6 +112,8 @@ kill: __bootstrap.process.kill, addSignalListener: __bootstrap.signals.addSignalListener, removeSignalListener: __bootstrap.signals.removeSignalListener, + refTimer: __bootstrap.timers.refTimer, + unrefTimer: __bootstrap.timers.unrefTimer, }; __bootstrap.denoNsUnstable = { @@ -146,8 +148,6 @@ flockSync: __bootstrap.fs.flockSync, funlock: __bootstrap.fs.funlock, funlockSync: __bootstrap.fs.funlockSync, - refTimer: __bootstrap.timers.refTimer, - unrefTimer: __bootstrap.timers.unrefTimer, Child: __bootstrap.spawn.Child, spawnChild: __bootstrap.spawn.spawnChild, spawn: __bootstrap.spawn.spawn, |