Last active
January 13, 2020 15:22
-
-
Save hperantunes/507ce5321cd8dccfe7fdac0c3ce94827 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export function* range(start, end = 0, step = 1) { | |
for (let value = start; value <= end; value += step) { | |
yield value; | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment