1.1.1 • Published 6 years ago

letsdothis v1.1.1

Weekly downloads
3
License
MIT
Repository
github
Last release
6 years ago

letsdothis NPM version Build Status

https://github.com/nirmaoz/letsdothis

letsdothis pipes a series of functions returning a promise.

Installation

$ npm install --save letsdothis

Usage

const letsdothis = require('letsdothis');

//addOne can return a value or a promise
let f = letsdothis(addOne, addOne, addOne, addOne);
f(0).then((result) => {
    console.log(result); //4
});

API

letsdothis (...functions ) function ( input ) promise

Tests

Tested using Mocha and Expect

License

MIT © Nir Maoz

1.1.1

6 years ago

1.1.0

6 years ago

1.0.1

6 years ago

1.0.0

6 years ago

0.2.8

6 years ago

0.2.7

6 years ago

0.2.6

6 years ago

0.2.5

6 years ago

0.2.4

6 years ago

0.2.3

6 years ago

0.2.2

6 years ago

0.2.1

6 years ago

0.2.0

6 years ago

0.1.0

6 years ago