Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created May 20, 2018 14:09
Show Gist options
  • Save nairihar/9794c05a19f0dbce64985b3eb2da7216 to your computer and use it in GitHub Desktop.
Save nairihar/9794c05a19f0dbce64985b3eb2da7216 to your computer and use it in GitHub Desktop.
Async Generator, Async Iterator in NodeJS v10, medium
async function* range(start, stop) {
for (let i = start; i <= stop; i++) {
yield i;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment