Skip to content

Instantly share code, notes, and snippets.

@aherve
Last active December 7, 2016 10:56
Show Gist options
  • Select an option

  • Save aherve/6abbffa208e5f74cab3a717d18297025 to your computer and use it in GitHub Desktop.

Select an option

Save aherve/6abbffa208e5f74cab3a717d18297025 to your computer and use it in GitHub Desktop.
function demoCb (userId) {
User.findById(userId, (err, user) => {
if (err) { dealWithIt(err) }
doSomethingAsync(user, (err, result) => {
if (err) { dealWithIt(err) }
// and so it goes...
})
})
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment