diff options
Diffstat (limited to 'std/node/fs.ts')
-rwxr-xr-x | std/node/fs.ts | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/std/node/fs.ts b/std/node/fs.ts index 6ef69cb69..f86fc2391 100755 --- a/std/node/fs.ts +++ b/std/node/fs.ts @@ -8,6 +8,12 @@ import { import { appendFile, appendFileSync } from "./_fs/_fs_appendFile.ts"; export { appendFile, appendFileSync }; +import { chmod, chmodSync } from "./_fs/_fs_chmod.ts"; +export { chmod, chmodSync }; + +import * as constants from "./_fs/_fs_constants.ts"; +export { constants }; + const { readFile: denoReadFile, readFileSync: denoReadFileSync, |