diff options
author | Chris Knight <cknight1234@gmail.com> | 2020-03-14 21:46:39 +0000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-03-14 17:46:39 -0400 |
commit | ea4f3ab852eba0eeb27004616163a0bbf9971215 (patch) | |
tree | 0e135fa6d55df589d795464294be2906d55f37bf /std/node/fs.ts | |
parent | bf51f7b2ec1b64a7ff14f7255eba231409ee5414 (diff) |
feat: add chmod Node polyfill and related file system constants (#4358)
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, |