Created
January 7, 2019 04:19
-
-
Save thejohnfreeman/cf3211340c3ed5491a783381164db260 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 = yield step1() | |
| const result2 = yield step2(result1) | |
| const result3 = yield step3(result2) | |
| const result4 = yield step4(result3) | |
| console.log(result4) | |
| // Errors are implicitly thrown. | |
| })() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment