Urara-Blog/node_modules/.pnpm-store/v3/files/54/9d2e620aaa55b20823618fba871053987a15da6745f9b7ca6df4c12e7471ebf0a58b3684febc3e30bd08ce158dcab0603cae6ff3ac7d1651234da5f9f2fbb4
2022-08-14 01:14:53 +08:00

28 lines
850 B
Text

/* Built-in method references for those with the same name as other `lodash` methods. */
var nativeCeil = Math.ceil,
nativeMax = Math.max;
/**
* 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) {
var index = -1,
length = nativeMax(nativeCeil((end - start) / (step || 1)), 0),
result = Array(length);
while (length--) {
result[fromRight ? length : ++index] = start;
start += step;
}
return result;
}
module.exports = baseRange;