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