Skip to content

Instantly share code, notes, and snippets.

@aherve
Created December 7, 2016 16:32
Show Gist options
  • Select an option

  • Save aherve/3222a399e23e87382b1e0dd317645306 to your computer and use it in GitHub Desktop.

Select an option

Save aherve/3222a399e23e87382b1e0dd317645306 to your computer and use it in GitHub Desktop.
function demoPromise (userId) {
return User
.findById(userId)
.then(user => Promise.all([user, doSomethingAsync(user)]))
.then(([user, result]) => finalResult(user, result));
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment