summaryrefslogtreecommitdiff
path: root/cli/js/deno_unstable.ts
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-06-22 20:58:52 +0800
committerGitHub <noreply@github.com>2020-06-22 08:58:52 -0400
commit6b3be01a00d9eaa134a5e58570239d6c1cd3bf54 (patch)
treeefa06fcb35a67a1481fbd6d48c8e2d18cc43381b /cli/js/deno_unstable.ts
parent79adc7b000a807caff01a3639b18cb91aef9bd9c (diff)
feat(unstable): add Deno.fstatSync and fstat (#6425)
Diffstat (limited to 'cli/js/deno_unstable.ts')
-rw-r--r--cli/js/deno_unstable.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts
index 967eafdcd..2327b554d 100644
--- a/cli/js/deno_unstable.ts
+++ b/cli/js/deno_unstable.ts
@@ -4,6 +4,7 @@
export { umask } from "./ops/fs/umask.ts";
export { linkSync, link } from "./ops/fs/link.ts";
+export { fstatSync, fstat } from "./ops/fs/stat.ts";
export { fsyncSync, fsync } from "./ops/fs/sync.ts";
export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
export { loadavg, osRelease, hostname } from "./ops/os.ts";