summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-05-01 02:08:12 -0700
committerRyan Dahl <ry@tinyclouds.org>2019-05-01 05:08:11 -0400
commit7237e9d34a61629d5bedce3b9cc46c8a1344d78a (patch)
tree6fd3edd47b9504903d73394dd6ff356e0ac79899 /js/deno.ts
parentc36b5dd01c2ff40cde07ed410d19e1c20e6137fc (diff)
fs: add Deno.utime/Deno.utimeSync (#2241)
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts
index 46f018afc..0a923ef1d 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -46,6 +46,7 @@ export {
MakeTempDirOptions
} from "./make_temp_dir";
export { chmodSync, chmod } from "./chmod";
+export { utimeSync, utime } from "./utime";
export { removeSync, remove, RemoveOption } from "./remove";
export { renameSync, rename } from "./rename";
export { readFileSync, readFile } from "./read_file";