summaryrefslogtreecommitdiff
path: root/cli/js/deno.ts
diff options
context:
space:
mode:
authordubiousjim <dubiousjim@gmail.com>2020-03-10 15:11:27 -0400
committerGitHub <noreply@github.com>2020-03-10 15:11:27 -0400
commit8078d976d29aa12819e3f5a781c846d67868b0d6 (patch)
tree3ec7786dd9b7e787c27f58e2041110e6fca86e2b /cli/js/deno.ts
parent6443e4aed16868c17111a56634aa733211430f46 (diff)
Add Deno.umask (#4290)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r--cli/js/deno.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts
index 23fcfda5d..f0115f261 100644
--- a/cli/js/deno.ts
+++ b/cli/js/deno.ts
@@ -113,6 +113,7 @@ export { symlinkSync, symlink } from "./ops/fs/symlink.ts";
export { connectTLS, listenTLS } from "./tls.ts";
export { truncateSync, truncate } from "./ops/fs/truncate.ts";
export { isatty, setRaw } from "./ops/tty.ts";
+export { umask } from "./ops/fs/umask.ts";
export { utimeSync, utime } from "./ops/fs/utime.ts";
export { version } from "./version.ts";
export { writeFileSync, writeFile, WriteFileOptions } from "./write_file.ts";