summaryrefslogtreecommitdiff
path: root/runtime/js/90_deno_ns.js
diff options
context:
space:
mode:
authorColin Ihrig <cjihrig@gmail.com>2022-10-25 15:23:36 -0400
committerGitHub <noreply@github.com>2022-10-25 15:23:36 -0400
commit378e6a8c0369f3256cde8a595d3dbdfe4f1dc2f9 (patch)
tree2eef60849362e3c5f086dd20dbe02ab043032e57 /runtime/js/90_deno_ns.js
parent8e3f825c921b38141afa7a69a0664881c5c94461 (diff)
feat: stabilize Deno.utime() and Deno.utimeSync() (#16421)
Diffstat (limited to 'runtime/js/90_deno_ns.js')
-rw-r--r--runtime/js/90_deno_ns.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/runtime/js/90_deno_ns.js b/runtime/js/90_deno_ns.js
index ef5edffc9..b2612f999 100644
--- a/runtime/js/90_deno_ns.js
+++ b/runtime/js/90_deno_ns.js
@@ -112,6 +112,8 @@
serveHttp: __bootstrap.http.serveHttp,
resolveDns: __bootstrap.net.resolveDns,
upgradeWebSocket: __bootstrap.http.upgradeWebSocket,
+ utime: __bootstrap.fs.utime,
+ utimeSync: __bootstrap.fs.utimeSync,
kill: __bootstrap.process.kill,
addSignalListener: __bootstrap.signals.addSignalListener,
removeSignalListener: __bootstrap.signals.removeSignalListener,
@@ -133,8 +135,6 @@
listenDatagram: __bootstrap.netUnstable.listenDatagram,
Listener: __bootstrap.netUnstable.Listener,
umask: __bootstrap.fs.umask,
- utime: __bootstrap.fs.utime,
- utimeSync: __bootstrap.fs.utimeSync,
HttpClient: __bootstrap.fetch.HttpClient,
createHttpClient: __bootstrap.fetch.createHttpClient,
http: __bootstrap.http,