Skip to content

Instantly share code, notes, and snippets.

@dpjayasekara
Forked from deepal/swallowing-errors.js
Created October 14, 2019 21:11
Show Gist options
  • Save dpjayasekara/340bba3ebb76993ad212fb901d78a6a5 to your computer and use it in GitHub Desktop.
Save dpjayasekara/340bba3ebb76993ad212fb901d78a6a5 to your computer and use it in GitHub Desktop.
function processUsers() {
try {
const body = await client.get('http://example.com/users');
const users = body.users || [];
// do something with users
} catch (err) {
// handle error
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment