Returns an array of numbers between specified start and end (non inclusive) values.
The function is only able to generate ascending ranges.
The start of the range.
The end of the range (not included).
import { range } from '@pacote/array'range(1, 4) // => [1, 2, 3] Copy
import { range } from '@pacote/array'range(1, 4) // => [1, 2, 3]
Returns an array of numbers between specified start and end (non inclusive) values.
The function is only able to generate ascending ranges.