* The base implementation of `_.random` without support for argument juggling * and returning floating-point numbers. * * @private * @param {number} min The minimum possible value. * @param {number} max The maximum possible value. * @returns {number} Returns the random
(min, max)
| 4059 | * @returns {number} Returns the random number. |
| 4060 | */ |
| 4061 | function baseRandom(min, max) { |
| 4062 | return min + floor(nativeRandom() * (max - min + 1)); |
| 4063 | } |
| 4064 | |
| 4065 | /** |
| 4066 | * The base implementation of `_.reduce` and `_.reduceRight` without support |