Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

@dylburger/umask

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@dylburger/umask

Provides a read-only stub of process.umask() in environments where it's not available (e.g. worker threads in Node v10)

  • 0.0.1
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Description

process.umask() "sets or returns the Node.js process's file mode creation mask".

A number of packages depend on process.umask() returning a mask, but worker threads on Node v10 (and potentially other environments) don't provide process.umask(), leading to this error:

TypeError: process.umask is not a function

This library monkey patches process to provide the umask() method, returning a default mask that should allow your code to proceed without error.

Usage

First,

npm install --save @dylburger/umask

Then, wherever you need access to process.umask(), add this at the top of your code:

require("@dylburger/umask")()

Notes

A patch was introduced to provide a read-only stub of the process.umask() method in worker threads on Node v12 and up. I've asked the Node team if they're willing to provide a backport of this functionality to Node v10, but haven't heard back as of this commit.

Keywords

FAQs

Package last updated on 21 Nov 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc