summaryrefslogtreecommitdiff
path: root/cli/js/deno_unstable.ts
diff options
context:
space:
mode:
authorCasper Beyer <caspervonb@pm.me>2020-06-26 20:36:35 +0800
committerGitHub <noreply@github.com>2020-06-26 08:36:35 -0400
commite278c90d8a32f5b9e382956234cfd84b651e98d8 (patch)
treefa881249f293c882a15fceb1b8f8a1421348b13a /cli/js/deno_unstable.ts
parented0b1d462718166143b67056c36c7db15cc736d7 (diff)
feat(unstable): add Deno.fdatasyncSync and fdatasync (#6403)
Diffstat (limited to 'cli/js/deno_unstable.ts')
-rw-r--r--cli/js/deno_unstable.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts
index 2327b554d..e7a0510be 100644
--- a/cli/js/deno_unstable.ts
+++ b/cli/js/deno_unstable.ts
@@ -5,7 +5,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 { fdatasyncSync, fdatasync, fsyncSync, fsync } from "./ops/fs/sync.ts";
export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
export { loadavg, osRelease, hostname } from "./ops/os.ts";
export { openPlugin } from "./ops/plugins.ts";