From 05f87a0cf23a370c0009db8343b3770b518799c8 Mon Sep 17 00:00:00 2001 From: "Kevin (Kun) \"Kassimo\" Qian" Date: Tue, 11 Sep 2018 09:00:57 -0700 Subject: Move writeFileSync to write_file.ts, add writeFile and tests (#728) --- js/deno.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'js/deno.ts') 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[] = []; -- cgit v1.2.3