Last active
January 7, 2019 04:19
-
-
Save thejohnfreeman/78d8f13a9c515a2debc48f88f9c2dd30 to your computer and use it in GitHub Desktop.
This file contains hidden or 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 function () { | |
| const result1 = await step1() | |
| const result2 = await step2(result1) | |
| const result3 = await step3(result2) | |
| const result4 = await step4(result3) | |
| console.log(result4) | |
| }() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment