diff options
author | Kevin (Kun) "Kassimo" Qian <kevinkassimo@gmail.com> | 2018-09-30 15:06:41 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2018-09-30 18:06:41 -0400 |
commit | 50a9c2b575b383e72f64e16e83e540c215482e73 (patch) | |
tree | b6ace8c3b76549b39c691029ad318accf09a6c90 /js/deno.ts | |
parent | eceeabdab29a8efab95990f2847fc21da39dfd66 (diff) |
Add copyFile/copyFileSync (#863)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 1 |
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"; |