diff options
author | X <git@iamje.com> | 2020-11-03 02:11:42 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-02 19:11:42 +0100 |
commit | 6d63391a380976ee4c5577d8efe449afede66f36 (patch) | |
tree | 7429ce425ea07b125dbd7ba6addd7cd7f69a09c2 /std/node/fs.ts | |
parent | 397fec63d1bacabd2b8e48bd30a1727003a7a72b (diff) |
feat(std/node/fs): add realpath and realpathSync (#8169)
Diffstat (limited to 'std/node/fs.ts')
-rw-r--r-- | std/node/fs.ts | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/std/node/fs.ts b/std/node/fs.ts index 91e24728b..052394e21 100644 --- a/std/node/fs.ts +++ b/std/node/fs.ts @@ -12,6 +12,7 @@ import { mkdir, mkdirSync } from "./_fs/_fs_mkdir.ts"; import { copyFile, copyFileSync } from "./_fs/_fs_copy.ts"; import { writeFile, writeFileSync } from "./_fs/_fs_writeFile.ts"; import { readdir, readdirSync } from "./_fs/_fs_readdir.ts"; +import { realpath, realpathSync } from "./_fs/_fs_realpath.ts"; import { rename, renameSync } from "./_fs/_fs_rename.ts"; import { rmdir, rmdirSync } from "./_fs/_fs_rmdir.ts"; import { unlink, unlinkSync } from "./_fs/_fs_unlink.ts"; @@ -51,6 +52,8 @@ export { readFileSync, readlink, readlinkSync, + realpath, + realpathSync, rename, renameSync, rmdir, |