summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2019-07-23 08:16:39 -0700
committerRyan Dahl <ry@tinyclouds.org>2019-07-23 11:16:39 -0400
commite49d1e16ca2fca45e959c1add9b5a1d6866dbb90 (patch)
tree1415190fcd43e18e0994eba5f13b9babf2b474db /js/deno.ts
parent70de8dd51d465ea2016d6bb7c0728111f4493668 (diff)
feat: expose writeAll() and writeAllSync() (#2298)
Symmetric with `readAll()` and `readAllSync()`. Also used in `xeval`. Also correct usage in `writeFile()`/`writeFileSync()`.
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts2
1 files changed, 1 insertions, 1 deletions
diff --git a/js/deno.ts b/js/deno.ts
index f20b6eff1..32899e045 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -38,7 +38,7 @@ export {
ReadWriteCloser,
ReadWriteSeeker
} from "./io";
-export { Buffer, readAll, readAllSync } from "./buffer";
+export { Buffer, readAll, readAllSync, writeAll, writeAllSync } from "./buffer";
export { mkdirSync, mkdir } from "./mkdir";
export {
makeTempDirSync,