Skip to content

Instantly share code, notes, and snippets.

@neysimoes
Created May 17, 2018 18:11
Show Gist options
  • Save neysimoes/e73b7ddb016f3f8168680c72cf171f47 to your computer and use it in GitHub Desktop.
Save neysimoes/e73b7ddb016f3f8168680c72cf171f47 to your computer and use it in GitHub Desktop.
function workMyCollection(arr) {
return arr.reduce(function(promise, item) {
return promise.then(function(result) {
return doSomethingAsyncWithResult(item, result);
});
}, q());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment