Security News
Research
Supply Chain Attack on Rspack npm Packages Injects Cryptojacking Malware
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
arbitrary-promise
Advanced tools
ArbitraryPromise is a simple Promise library that allows you to make your own arbitrarily named resolve/then functions.
ArbitraryPromise is a simple Promise library that allows you to make your own arbitrarily named resolve/then functions.
Go with a classic:
import ArbitraryPromise from 'arbitrary-promise'
const promise = new ArbitraryPromise([['resolve', 'then']])
promise.then(console.log)
promise.resolve('Mathematical!')
-> Mathematical!
Or, spice it up with what this library provides, customization!
import ArbitraryPromise from 'arbitrary-promise'
const promise = new ArbitraryPromise([['handleData', 'onData']])
promise.onData(console.log)
promise.handleData('Whoa! Algebraic!')
-> Whoa! Algebraic!
Of course, the promise will also work in reverse order, it being a promise and all:
import ArbitraryPromise from 'arbitrary-promise'
const promise = new ArbitraryPromise([['handleData', 'onData']])
promise.handleData('Whoa! Algebraic!')
promise.onData(console.log)
-> Whoa! Algebraic!
Unless, that is, you don't want it to:
import ArbitraryPromise from 'arbitrary-promise'
const promise = new ArbitraryPromise([['handleData', 'onData']], false)
promise.handleData('Whoa! Algebraic!')
promise.onData(console.log)
-> Zilch.
Check out the tests for all the info, of which there is not much more than what you already know :)
FAQs
ArbitraryPromise is a simple Promise library that allows you to make your own arbitrarily named resolve/then functions.
The npm package arbitrary-promise receives a total of 5 weekly downloads. As such, arbitrary-promise popularity was classified as not popular.
We found that arbitrary-promise demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.
Security News
Sonar’s acquisition of Tidelift highlights a growing industry shift toward sustainable open source funding, addressing maintainer burnout and critical software dependencies.