mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-02-01 15:57:48 +00:00
25 lines
697 B
JavaScript
25 lines
697 B
JavaScript
/**
|
|
* The base implementation of `range` and `rangeRight` which doesn't
|
|
* coerce arguments.
|
|
*
|
|
* @private
|
|
* @param {number} start The start of the range.
|
|
* @param {number} end The end of the range.
|
|
* @param {number} step The value to increment or decrement by.
|
|
* @param {boolean} [fromRight] Specify iterating from right to left.
|
|
* @returns {Array} Returns the range of numbers.
|
|
*/
|
|
function baseRange(start, end, step, fromRight) {
|
|
let index = -1
|
|
let length = Math.max(Math.ceil((end - start) / (step || 1)), 0)
|
|
const result = new Array(length)
|
|
|
|
while (length--) {
|
|
result[fromRight ? length : ++index] = start
|
|
start += step
|
|
}
|
|
return result
|
|
}
|
|
|
|
export default baseRange
|