apr-waterfall
Runs the tasks array of functions in series, each passing their results to the next in the array.
Runs the tasks array of functions in series, each passing their results to the next in the array.
Repeatedly call fn, while test returns true.
Returns true if every element in coll satisfies an async test.
The opposite of filter. Removes values that pass an async truth test.
Version of the compose function that is more natural to read. Each function consumes the return value of the previous function. It is the equivalent of compose with the arguments reversed.
Run the functions in the tasks in series, each one running once the previous function has completed.
Sorts a list by the results of running each coll value through an async iteratee.
Creates a continuation function with some arguments already applied.
Take a sync function and make it async. This is useful for plugging sync functions into a waterfall, series, or other async functions.
Transform a callback-based function into a promise-based one.
Creates a function which is a composition of the passed asynchronous functions. Each function consumes the return value of the function that follows. Composing functions f(), g(), and h() would produce the result of f(g(h())).
Applies iteratee to each item in coll, concatenating the results. Returns the concatenated list.
Simplifies web, file, and parallel tasks with TypeScript async/await
Go style channel implementation that works well with `co`
Turn regular node function into a thunk for `co`.
JavaScript / TypeScript library to help to perform asynchronous loop
async/await Node.js package to access Facebook Graph API