diff options
author | Colin Ihrig <cjihrig@gmail.com> | 2022-10-25 14:03:05 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-10-25 14:03:05 -0400 |
commit | ffff814540394a6a958897b38f4944954773cf74 (patch) | |
tree | 7797f0d55fc7d7db7295932ee7a2a252e546099e /runtime/js/90_deno_ns.js | |
parent | 3f22f912ec4996fecb05ba6d5baa1a02bdffe78e (diff) |
feat: stabilize Deno.futime() and Deno.futimeSync() (#16415)
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 b4440d2ac..b9e361ae4 100644 --- a/runtime/js/90_deno_ns.js +++ b/runtime/js/90_deno_ns.js @@ -55,6 +55,8 @@ truncate: __bootstrap.fs.truncate, ftruncateSync: __bootstrap.fs.ftruncateSync, ftruncate: __bootstrap.fs.ftruncate, + futime: __bootstrap.fs.futime, + futimeSync: __bootstrap.fs.futimeSync, errors: __bootstrap.errors.errors, // TODO(kt3k): Remove this export at v2 // See https://github.com/denoland/deno/issues/9294 @@ -128,8 +130,6 @@ getUid: __bootstrap.os.getUid, listenDatagram: __bootstrap.net.listenDatagram, umask: __bootstrap.fs.umask, - futime: __bootstrap.fs.futime, - futimeSync: __bootstrap.fs.futimeSync, utime: __bootstrap.fs.utime, utimeSync: __bootstrap.fs.utimeSync, HttpClient: __bootstrap.fetch.HttpClient, |