blob: fbc94091e15240b7c19ac4b4002936dbd845a201 (
plain)
1
2
3
4
5
6
7
|
// 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 });
}
|