Skip to content

Instantly share code, notes, and snippets.

@thejohnfreeman
Created January 7, 2019 04:19
Show Gist options
  • Select an option

  • Save thejohnfreeman/cf3211340c3ed5491a783381164db260 to your computer and use it in GitHub Desktop.

Select an option

Save thejohnfreeman/cf3211340c3ed5491a783381164db260 to your computer and use it in GitHub Desktop.
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