summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-09-11 09:00:57 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-11 12:00:57 -0400
commit05f87a0cf23a370c0009db8343b3770b518799c8 (patch)
treeb2279e3257382ea1c1ec8c259e9fecdac9e78820 /js/deno.ts
parentc2663e1d82521e9b68a7e2e96197030a4ee00c30 (diff)
Move writeFileSync to write_file.ts, add writeFile and tests (#728)
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/js/deno.ts b/js/deno.ts
index fab8ef4e2..8908d7b67 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -8,11 +8,11 @@ export {
makeTempDirSync,
renameSync,
statSync,
- lstatSync,
- writeFileSync
+ lstatSync
} from "./os";
export { mkdirSync, mkdir } from "./mkdir";
export { readFileSync, readFile } from "./read_file";
+export { writeFileSync, writeFile } from "./write_file";
export { ErrorKind, DenoError } from "./errors";
export { libdeno } from "./libdeno";
export const argv: string[] = [];