blob: 38bf8ff6c6b8e407b3db45e7d1868ec32a63dd44 (
plain)
1
2
3
4
5
6
|
// Copyright 2018-2020 the Deno authors. All rights reserved. MIT license.
import { sendSync } from "../dispatch_json.ts";
export function umask(mask?: number): number {
return sendSync("op_umask", { mask });
}
|