quickloop
v1.0.0
Published
Make a range array from an int for those times when you just needa loop over numbers
Downloads
1
Readme
quickloop
Make a range array from an int for those times when you just needa loop over numbers
installation
$ npm install --save quickloop
or
$ yarn add quickloop
usage
const range = quickloop(5); // [0, 1, 2, 3, 4]
const offsetRange = quickloop(5, 2); // [2, 3, 4, 5, 6];
capiche?