CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_baseRandom.js19 linesDownload Raw Back to lodash
1/* Built-in method references for those with the same name as other `lodash` methods. */2var nativeFloor = Math.floor,3    nativeRandom = Math.random;4 5/**6 * The base implementation of `_.random` without support for returning7 * floating-point numbers.8 *9 * @private10 * @param {number} lower The lower bound.11 * @param {number} upper The upper bound.12 * @returns {number} Returns the random number.13 */14function baseRandom(lower, upper) {15  return lower + nativeFloor(nativeRandom() * (upper - lower + 1));16}17 18module.exports = baseRandom;19 
basant307/AI_Governance_Project · CoolFace