| /* Built-in method references for those with the same name as other `lodash` methods. */ |
| var nativeCeil = Math.ceil, |
| * The base implementation of `_.range` and `_.rangeRight` which doesn't |
| * @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) { |
| length = nativeMax(nativeCeil((end - start) / (step || 1)), 0), |
| result[fromRight ? length : ++index] = start; |
| module.exports = baseRange; |