apr-compose

3.0.3 • Public • Published

compose

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())).

Parameters

Examples

import compose from 'apr-compose';
 
const then = (v) => new Promise((resolve) => resolve(v));
 
const composed = compose(
  async (v) => await then(+ 1),
  async (v) => await then(+ 2),
  async (v) => await then(+ 3)
);
 
const output = await composed(1); // 7

Returns Function

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 3.0.3
    0
    • latest

Version History

Package Sidebar

Install

npm i apr-compose

Weekly Downloads

10

Version

3.0.3

License

MIT

Last publish

Collaborators

  • ramitos