Skip to content

Instantly share code, notes, and snippets.

@tyage
Last active August 29, 2015 14:03
Show Gist options
  • Save tyage/0a591e63f2968c114e72 to your computer and use it in GitHub Desktop.
Save tyage/0a591e63f2968c114e72 to your computer and use it in GitHub Desktop.
let cats = {
'@@iterator': function () {
let names = Object.keys(this), i = 0
return {
next: () => i < names.length ? { value: names[i++] } : { done: true }
}
},
a: 1,
b: 2,
c: 3,
};
console.log(Array.from(cats));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment