Skip to content

Instantly share code, notes, and snippets.

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

  • Save aherve/071a159203d565f2a756b9e307ae9e67 to your computer and use it in GitHub Desktop.

Select an option

Save aherve/071a159203d565f2a756b9e307ae9e67 to your computer and use it in GitHub Desktop.
async function demo (userId: string) {
try {
const user = await User.findById(user)
const result = await doSomethingAsync(user)
finalResult(user, result)
} catch (e) {
dealWithIt(e)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment