Skip to content

Instantly share code, notes, and snippets.

@silesky
Created October 5, 2017 22:29
Show Gist options
  • Save silesky/bcb0cf54b0f17d5f1659af9e1df55b56 to your computer and use it in GitHub Desktop.
Save silesky/bcb0cf54b0f17d5f1659af9e1df55b56 to your computer and use it in GitHub Desktop.
async_blog_boom.js
const timer = async () => { // function* -> async
await promiseTimeout(1000) // yield -> await
await promiseTimeout(2000)
await promiseTimeout(3000)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment