range-component
v1.0.0
Published
Return a range of integers
Downloads
2,866
Readme
range
Return a range of integers
Installation
$ component install component/range
API
Exclusive range:
range(5, 10);
// => [5,6,7,8,9]
Inclusive range (truthy value):
range(5, 10, true);
range(5, 10, 'inclusive');
// => [5,6,7,8,9,10]
License
MIT