Skip to content

Latest commit

 

History

History
29 lines (18 loc) · 301 Bytes

File metadata and controls

29 lines (18 loc) · 301 Bytes

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