CoolFace
Datasetpublic

basant307/AI_Governance_Project

sourceHugging Faceapache-2.0updated 2mo agoView on Hugging Face
0likes48downloads
_arrayShuffle.js16 linesDownload Raw Back to lodash-es
1import copyArray from './_copyArray.js';2import shuffleSelf from './_shuffleSelf.js';3 4/**5 * A specialized version of `_.shuffle` for arrays.6 *7 * @private8 * @param {Array} array The array to shuffle.9 * @returns {Array} Returns the new shuffled array.10 */11function arrayShuffle(array) {12  return shuffleSelf(copyArray(array));13}14 15export default arrayShuffle;16 
basant307/AI_Governance_Project · CoolFace