summaryrefslogtreecommitdiff
path: root/js/deno.ts
diff options
context:
space:
mode:
authorKevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com>2018-09-30 15:06:41 -0700
committerRyan Dahl <ry@tinyclouds.org>2018-09-30 18:06:41 -0400
commit50a9c2b575b383e72f64e16e83e540c215482e73 (patch)
treeb6ace8c3b76549b39c691029ad318accf09a6c90 /js/deno.ts
parenteceeabdab29a8efab95990f2847fc21da39dfd66 (diff)
Add copyFile/copyFileSync (#863)
Diffstat (limited to 'js/deno.ts')
-rw-r--r--js/deno.ts1
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts
index cd290bfa3..03f3d1a89 100644
--- a/js/deno.ts
+++ b/js/deno.ts
@@ -9,6 +9,7 @@ export { makeTempDirSync, makeTempDir } from "./make_temp_dir";
export { removeSync, remove, removeAllSync, removeAll } from "./remove";
export { renameSync, rename } from "./rename";
export { readFileSync, readFile } from "./read_file";
+export { copyFileSync, copyFile } from "./copy_file";
export { readlinkSync, readlink } from "./read_link";
export { FileInfo, statSync, lstatSync, stat, lstat } from "./stat";
export { symlinkSync, symlink } from "./symlink";