add copyFile & copyFileSync to std/node/fs (#4726)

This commit is contained in:
Ali Hasani 2020-04-12 23:04:16 +04:30 committed by GitHub
parent 6e0c9a0c32
commit e23f33de7b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 68 additions and 0 deletions

View file

@ -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,