Created
June 9, 2017 15:50
-
-
Save cesalberca/c149fecdefecc97d37e1082526b9c6c1 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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