0.2.0 • Published 6 years ago

ramdap v0.2.0

Weekly downloads
7
License
ISC
Repository
github
Last release
6 years ago

Ramda Promise Helpers

Just a few functions for working with promises in Ramda.

Functions

ofP

[Promise] -> Promise

Creates one promise out of an array of promises

pOf

a -> Promise

Turns any value into a promise that just resolves to that value

joinP

[(a -> Promise)] -> (a -> Promise)

Creates one promise returning functions out of multiple promise returning functions. The returned function will output an array of all the resulting resolved values.

tapP

(a -> (Promise b)) -> a -> a

Runs the given Promise returning function with the supplied object, then returns the object once the promise has resolved.

Installation

npm i ramdap