lib-async
v0.2.2
Published
Yet another simple Promises/A+ compliant async flow control using ES6 generators.
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));