https://github.com/nirmaoz/letsdothis
letsdothis pipes a series of functions returning a promise.
$ npm install --save letsdothis
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
});
letsdothis (...functions ) → function ( input ) → promise
MIT © Nir Maoz