0.2.2 • Published 9 years ago
lib-async v0.2.2
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));