summaryrefslogtreecommitdiff
path: root/std/node/_fs/_fs_chown.ts
blob: c6baa4722b6ec30564ea199c196e26136986a957 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
// 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 {
  Deno.chown(path, uid, gid)
    .then(() => callback())
    .catch(callback);
}

/**
 * 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);
}