CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes45downloads
_arraySample.js16 linesDownload Raw Back to lodash-es
1import baseRandom from './_baseRandom.js';2 3/**4 * A specialized version of `_.sample` for arrays.5 *6 * @private7 * @param {Array} array The array to sample.8 * @returns {*} Returns the random element.9 */10function arraySample(array) {11  var length = array.length;12  return length ? array[baseRandom(0, length - 1)] : undefined;13}14 15export default arraySample;16 
basant307/AI_Governance_Project · CoolFace