Skip to content

Instantly share code, notes, and snippets.

@craftgear
Created October 27, 2017 04:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save craftgear/f4dfa86711ddb07d1a26e29f8a34a417 to your computer and use it in GitHub Desktop.
Save craftgear/f4dfa86711ddb07d1a26e29f8a34a417 to your computer and use it in GitHub Desktop.
async (callback) => {
try {
const result = await asyncCode();
callback(null, result)
}
catch (e) {
callback(e)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment