summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_chown.ts
diff options
context:
space:
mode:
authorChris Knight <cknight1234@gmail.com>2020-03-15 03:01:34 +0000
committerGitHub <noreply@github.com>2020-03-14 23:01:34 -0400
commita159165fe5f9fe53c3593af707888a7efc859d14 (patch)
tree25c768a355c12d0f80fb9aa730ba70c3a473607d /std/node/_fs/_fs_chown.ts
parent6cc40b08652d0224111dc5e902210174b5a63cee (diff)
Node polyfill for fs.chown and fs.close (#4377)
Diffstat (limited to 'std/node/_fs/_fs_chown.ts')
-rw-r--r--std/node/_fs/_fs_chown.ts37
1 files changed, 37 insertions, 0 deletions
diff --git a/std/node/_fs/_fs_chown.ts b/std/node/_fs/_fs_chown.ts
new file mode 100644
index 000000000..008b30c47
--- /dev/null
+++ b/std/node/_fs/_fs_chown.ts
@@ -0,0 +1,37 @@
+// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
+
+import { CallbackWithError } from "./_fs_common.ts";
+
+/**
+ * TODO: Also accept 'path' parameter as a Node polyfill Buffer or URL type once these
+ * are implemented. See https://github.com/denoland/deno/issues/3403
+ */
+export function chown(
+ path: string,
+ uid: number,
+ gid: number,
+ callback: CallbackWithError
+): void {
+ new Promise(async (resolve, reject) => {
+ try {
+ await Deno.chown(path, uid, gid);
+ resolve();
+ } catch (err) {
+ reject(err);
+ }
+ })
+ .then(() => {
+ callback();
+ })
+ .catch(err => {
+ callback(err);
+ });
+}
+
+/**
+ * TODO: Also accept 'path' parameter as a Node polyfill Buffer or URL type once these
+ * are implemented. See https://github.com/denoland/deno/issues/3403
+ */
+export function chownSync(path: string, uid: number, gid: number): void {
+ Deno.chownSync(path, uid, gid);
+}