Skip to content

Instantly share code, notes, and snippets.

@dustinc
Created May 3, 2017 22:28
Show Gist options
  • Save dustinc/e6ac730176198bebd0f5e9bee73adfb0 to your computer and use it in GitHub Desktop.
Save dustinc/e6ac730176198bebd0f5e9bee73adfb0 to your computer and use it in GitHub Desktop.
// from
promisestuff()
.then(result => res.json(result))
// to
promisestuff()
.then((result) => {
// do more stuff then return
return res.json(result);
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment