summaryrefslogtreecommitdiff
path: root/std/node/fs.ts
diff options
context:
space:
mode:
Diffstat (limited to 'std/node/fs.ts')
-rwxr-xr-xstd/node/fs.ts3
1 files changed, 3 insertions, 0 deletions
diff --git a/std/node/fs.ts b/std/node/fs.ts
index 4267fdb2b..343786e24 100755
--- a/std/node/fs.ts
+++ b/std/node/fs.ts
@@ -10,6 +10,7 @@ import { readFile, readFileSync } from "./_fs/_fs_readFile.ts";
import { readlink, readlinkSync } from "./_fs/_fs_readlink.ts";
import { exists, existsSync } from "./_fs/_fs_exists.ts";
import { mkdir, mkdirSync } from "./_fs/_fs_mkdir.ts";
+import { copyFile, copyFileSync } from "./_fs/_fs_copy.ts";
export {
access,
@@ -23,6 +24,8 @@ export {
close,
closeSync,
constants,
+ copyFile,
+ copyFileSync,
exists,
existsSync,
readFile,