Skip to content

Instantly share code, notes, and snippets.

@jooyunghan
Created December 2, 2016 02:40
Show Gist options
  • Save jooyunghan/ca3eae1619ea6333fff153ecefeed6e9 to your computer and use it in GitHub Desktop.
Save jooyunghan/ca3eae1619ea6333fff153ecefeed6e9 to your computer and use it in GitHub Desktop.
function GenIter(c, genf) {
this.c = c;
this.genf = genf;
}
GenIter.prototype.next = function next() {
var f = this.genf;
var result = f(this.c);
if (result === stop) {
return {done: true};
} else {
return {done: false, value: result};
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment