mirror of
https://github.com/denoland/deno.git
synced 2025-09-28 05:04:48 +00:00
add copyFile & copyFileSync to std/node/fs (#4726)
This commit is contained in:
parent
6e0c9a0c32
commit
e23f33de7b
3 changed files with 68 additions and 0 deletions
|
@ -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,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue