Utility functions for Promise handling in RamdaJS'
npm install ramdapJust a few functions for working with promises in Ramda.
[Promise] -> PromiseCreates one promise out of an array of promises
a -> PromiseTurns any value into a promise that just resolves to that value
[(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.
(a -> (Promise b)) -> a -> aRuns the given Promise returning function with the supplied object, then returns the object once the promise has resolved.
npm i ramdap
``