mirror of
https://github.com/whoisclebs/lodash.git
synced 2026-01-31 23:37:49 +00:00
47 lines
1.2 KiB
JavaScript
47 lines
1.2 KiB
JavaScript
import baseTimes from './.internal/baseTimes.js'
|
|
import toInteger from './toInteger.js'
|
|
|
|
/** Used as references for various `Number` constants. */
|
|
const MAX_SAFE_INTEGER = 9007199254740991
|
|
|
|
/** Used as references for the maximum length and index of an array. */
|
|
const MAX_ARRAY_LENGTH = 4294967295
|
|
|
|
/* Built-in method references for those with the same name as other `lodash` methods. */
|
|
const nativeMin = Math.min
|
|
|
|
/**
|
|
* Invokes the iteratee `n` times, returning an array of the results of
|
|
* each invocation. The iteratee is invoked with one argumentindex).
|
|
*
|
|
* @since 0.1.0
|
|
* @category Util
|
|
* @param {number} n The number of times to invoke `iteratee`.
|
|
* @param {Function} iteratee The function invoked per iteration.
|
|
* @returns {Array} Returns the array of results.
|
|
* @example
|
|
*
|
|
* times(3, String)
|
|
* // => ['0', '1', '2']
|
|
*
|
|
* times(4, constant(0))
|
|
* // => [0, 0, 0, 0]
|
|
*/
|
|
function times(n, iteratee) {
|
|
n = toInteger(n)
|
|
if (n < 1 || n > MAX_SAFE_INTEGER) {
|
|
return []
|
|
}
|
|
let index = MAX_ARRAY_LENGTH
|
|
const length = nativeMin(n, MAX_ARRAY_LENGTH)
|
|
const result = baseTimes(length, iteratee)
|
|
|
|
n -= MAX_ARRAY_LENGTH
|
|
while (++index < n) {
|
|
iteratee(index)
|
|
}
|
|
return result
|
|
}
|
|
|
|
export default times
|