diff options
author | Divya <hello@shortdiv.com> | 2020-04-28 00:35:20 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-04-28 01:35:20 -0400 |
commit | de751e5221cd2eafbdd9cddfb58b0619d74c0504 (patch) | |
tree | 10af8c5b70fc6b57f4a3247ec3367bf5847f195b /cli/js/deno.ts | |
parent | 2fc5878668d8f08ec6989d07e79125d640a73d43 (diff) |
fix(#4769) Adds readTextFile, writeTextFile, with sync counterparts (#4901)
Diffstat (limited to 'cli/js/deno.ts')
-rw-r--r-- | cli/js/deno.ts | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/cli/js/deno.ts b/cli/js/deno.ts index 355000ac5..2efb6920a 100644 --- a/cli/js/deno.ts +++ b/cli/js/deno.ts @@ -99,6 +99,7 @@ export { kill } from "./ops/process.ts"; export { run, RunOptions, Process, ProcessStatus } from "./process.ts"; export { DirEntry, readdirSync, readdir } from "./ops/fs/read_dir.ts"; export { readFileSync, readFile } from "./read_file.ts"; +export { readTextFileSync, readTextFile } from "./read_text_file.ts"; export { readlinkSync, readlink } from "./ops/fs/read_link.ts"; export { realpathSync, realpath } from "./ops/fs/realpath.ts"; export { removeSync, remove, RemoveOptions } from "./ops/fs/remove.ts"; @@ -114,6 +115,7 @@ 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"; +export { writeTextFileSync, writeTextFile } from "./write_text_file.ts"; export const args: string[] = []; export { TestDefinition, test } from "./testing.ts"; |