diff options
author | Yingbo (Max) Wang <maxwyb@gmail.com> | 2019-05-07 18:58:58 -0700 |
---|---|---|
committer | Ryan Dahl <ry@tinyclouds.org> | 2019-05-07 21:58:57 -0400 |
commit | ec9080f34c936d9af56cca68de664954053bf423 (patch) | |
tree | ede97b27acebc225cc69da70433b626af63cc0e6 /js/deno.ts | |
parent | 1f7ad17152c03b140c997590c897b89fbfea7cea (diff) |
Add Deno.chown (#2292)
Diffstat (limited to 'js/deno.ts')
-rw-r--r-- | js/deno.ts | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/js/deno.ts b/js/deno.ts index 0a923ef1d..3275d9353 100644 --- a/js/deno.ts +++ b/js/deno.ts @@ -46,6 +46,7 @@ export { MakeTempDirOptions } from "./make_temp_dir"; export { chmodSync, chmod } from "./chmod"; +export { chownSync, chown } from "./chown"; export { utimeSync, utime } from "./utime"; export { removeSync, remove, RemoveOption } from "./remove"; export { renameSync, rename } from "./rename"; |