1
0
Fork 0
mirror of https://github.com/denoland/deno.git synced 2025-01-08 07:08:27 -05:00
denoland-deno/std/node/_fs/_fs_chown.ts

29 lines
908 B
TypeScript
Raw Normal View History

2021-01-10 21:59:07 -05:00
// Copyright 2018-2021 the Deno authors. All rights reserved. MIT license.
import type { CallbackWithError } from "./_fs_common.ts";
import { fromFileUrl } from "../path.ts";
/**
* TODO: Also accept 'path' parameter as a Node polyfill Buffer type once these
* are implemented. See https://github.com/denoland/deno/issues/3403
*/
export function chown(
path: string | URL,
uid: number,
gid: number,
callback: CallbackWithError,
): void {
path = path instanceof URL ? fromFileUrl(path) : path;
Deno.chown(path, uid, gid).then(() => callback(null), callback);
}
/**
* TODO: Also accept 'path' parameter as a Node polyfill Buffer type once these
* are implemented. See https://github.com/denoland/deno/issues/3403
*/
export function chownSync(path: string | URL, uid: number, gid: number): void {
path = path instanceof URL ? fromFileUrl(path) : path;
Deno.chownSync(path, uid, gid);
}