Skip to content

Instantly share code, notes, and snippets.

@nairihar
Created May 20, 2018 14:11
Show Gist options
  • Save nairihar/117b79b7f4bccc50bcffa87cc56fd3b2 to your computer and use it in GitHub Desktop.
Save nairihar/117b79b7f4bccc50bcffa87cc56fd3b2 to your computer and use it in GitHub Desktop.
Async Generator, Async Iterator in NodeJS v10, medium
const arr = range(4, 8);
arr.next(); // Promise
(async () => {
console.log(await arr.next()); // {value: 5, done: false}
})();
(async () => {
console.log(await arr.next()); // {value: 6, done: false}
})();
// etc ...
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment