diff options
| author | Casper Beyer <caspervonb@pm.me> | 2020-06-21 21:29:44 +0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-06-21 09:29:44 -0400 |
| commit | 40866d7cd521a2f33ac60d841e1706c2f68ecc66 (patch) | |
| tree | a0876c5dd3d63b814490a4a0ca6c511580e2170c /cli/js/deno_unstable.ts | |
| parent | f24aab81c9c97fe933a9c6d9a02fbc70df60af37 (diff) | |
feat(unstable): add Deno.fsyncSync and fsync (#6411)
Diffstat (limited to 'cli/js/deno_unstable.ts')
| -rw-r--r-- | cli/js/deno_unstable.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/deno_unstable.ts b/cli/js/deno_unstable.ts index d8624c675..967eafdcd 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 { 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"; |
