Skip to content

Instantly share code, notes, and snippets.

@miguel-leon
Created November 26, 2018 04:27
Show Gist options
  • Save miguel-leon/19a57b69877a96adfbd35712046ff4cc to your computer and use it in GitHub Desktop.
Save miguel-leon/19a57b69877a96adfbd35712046ff4cc to your computer and use it in GitHub Desktop.
export function* LazySequence(to, from = 0) {
while (from < to) {
yield from++;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment