Skip to content

Instantly share code, notes, and snippets.

@slikts
Last active April 9, 2017 12:22
Show Gist options
  • Save slikts/70b3eb01ddb025429cb585b808c50b14 to your computer and use it in GitHub Desktop.
Save slikts/70b3eb01ddb025429cb585b808c50b14 to your computer and use it in GitHub Desktop.
class LazyArray extends Array {
constructor() {
super()
this[Array.species] = new.target
}
*lazyMap(fn) {
for (let i = 0; i < this.length; i++) {
yield fn(this[i])
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment