Skip to content

Instantly share code, notes, and snippets.

@cesalberca
Created June 9, 2017 15:50
Show Gist options
  • Save cesalberca/c149fecdefecc97d37e1082526b9c6c1 to your computer and use it in GitHub Desktop.
Save cesalberca/c149fecdefecc97d37e1082526b9c6c1 to your computer and use it in GitHub Desktop.
async fn(a, b) {
try {
const x = await Method1(a ,b);
const y = await Method2(x[0], x[1]);
return await Method3(y);
} catch (e) {
console.log(e);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment