Skip to content

Instantly share code, notes, and snippets.

@dwickstrom
Created July 6, 2017 09:42
Show Gist options
  • Save dwickstrom/4a1b71f50fb984883191966cdb020332 to your computer and use it in GitHub Desktop.
Save dwickstrom/4a1b71f50fb984883191966cdb020332 to your computer and use it in GitHub Desktop.
function * xrange (step, start, stop) {
let i = start
while (i < stop) {
yield i
i = i + step
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment