Skip to content

Instantly share code, notes, and snippets.

@jweinst1
Created March 30, 2016 16:49
Show Gist options
  • Save jweinst1/78d6d329dd8ce21257b8ad37e8e81479 to your computer and use it in GitHub Desktop.
Save jweinst1/78d6d329dd8ce21257b8ad37e8e81479 to your computer and use it in GitHub Desktop.
function makeIterator(array){
var nextIndex = 0;
return {
next: function(){
return nextIndex < array.length ?
{value: array[nextIndex++], done: false} :
{done: true};
}
};
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment