Skip to content

Instantly share code, notes, and snippets.

@AlexFrazer
Created February 13, 2017 15:30
Show Gist options
  • Save AlexFrazer/5053636c18c69ca30d3c0233d3aa7a38 to your computer and use it in GitHub Desktop.
Save AlexFrazer/5053636c18c69ca30d3c0233d3aa7a38 to your computer and use it in GitHub Desktop.
async function getX() {
let users = [];
try {
x = await getUsers();
} catch (e) { }
return x;
}
// vs
async function getX() {
try {
return await getUsers();
} catch (e) {
return [];
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment