You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Summary: process.umask() (no args) is deprecated and will be removed.
I couldn't quite divine what this lib uses process.umask() for but in most cases you don't need to deal with the umask directly - the operating system will apply it automatically.
Refs: nodejs/node#32321
Summary: process.umask() (no args) is deprecated and will be removed.
I couldn't quite divine what this lib uses
process.umask()
for but in most cases you don't need to deal with the umask directly - the operating system will apply it automatically.Example:
Computing the file mode that way is superfluous, it can be replaced with just this:
The text was updated successfully, but these errors were encountered: