Skip to content

Instantly share code, notes, and snippets.

@DaveRandom
Last active February 28, 2021 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save DaveRandom/1761f32553902efb8fe826d2b76e8251 to your computer and use it in GitHub Desktop.
Save DaveRandom/1761f32553902efb8fe826d2b76e8251 to your computer and use it in GitHub Desktop.
() => {
let first = true;
return {
next: function () {
if (first) {
return {done: false, value: 'bye'};
}
first = false;
return {done: true}
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment