Security News
Oracle Drags Its Feet in the JavaScript Trademark Dispute
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
fantasy-promises
Advanced tools
This library implements purely functional, monadic promises.
Promise(fork)
Promise is a constructor which takes a fork
function. The fork
function takes one argument:
fork(resolve)
The resolve
callback gets called on a value.
Promise.of(x)
Creates a Promise that contains a successful value.
chain(f)
Returns a new promise that evaluates f
when the current promise
is successfully fulfilled. f
must return a new promise.
map(f)
Returns a new promise that evaluates f
on a value and passes it
through to the resolve function.
extract()
Executes a promise to get a value.
extend(f)
Returns a new promise that evaluates f
over the promise to get a
value.
FAQs
Fantasy Land compatible monadic promises
The npm package fantasy-promises receives a total of 9 weekly downloads. As such, fantasy-promises popularity was classified as not popular.
We found that fantasy-promises 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
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.
Security News
The Linux Foundation is warning open source developers that compliance with global sanctions is mandatory, highlighting legal risks and restrictions on contributions.
Security News
Maven Central now validates Sigstore signatures, making it easier for developers to verify the provenance of Java packages.