efflux
v0.1.3
Published
Yet another simple Promises/A+ compliant async flow control using ES6 generators.
Downloads
5
Maintainers
Readme
Async
Yet another simple Promises/A+ compliant async flow control using ES6 generators.
Example
new Async(function*() {
const users = yield getUsers(),
places = yield getPlaces(users);
return { users, places };
}).then((models) => console.log(models));