mirror of
https://github.com/denoland/deno.git
synced 2024-12-21 23:04:45 -05:00
Mark Deno.umask unstable (#4935)
This commit is contained in:
parent
ee4e6a1ef9
commit
a1974cbe43
1 changed files with 2 additions and 1 deletions
|
@ -210,10 +210,11 @@ struct UmaskArgs {
|
|||
}
|
||||
|
||||
fn op_umask(
|
||||
_state: &State,
|
||||
state: &State,
|
||||
args: Value,
|
||||
_zero_copy: Option<ZeroCopyBuf>,
|
||||
) -> Result<JsonOp, OpError> {
|
||||
state.check_unstable("Deno.umask");
|
||||
let args: UmaskArgs = serde_json::from_value(args)?;
|
||||
// TODO implement umask for Windows
|
||||
// see https://github.com/nodejs/node/blob/master/src/node_process_methods.cc
|
||||
|
|
Loading…
Reference in a new issue