Skip to content

Instantly share code, notes, and snippets.

@kanian
Last active May 21, 2019 12:53
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save kanian/c48e41fc8c076c83780b3f2932dace25 to your computer and use it in GitHub Desktop.
Save kanian/c48e41fc8c076c83780b3f2932dace25 to your computer and use it in GitHub Desktop.
function* filler(from,to){
while(from <= to)
yield from++
}
function fillTo(x){
return [...filler(1, x)]
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment