Urara-Blog/node_modules/.pnpm-store/v3/files/3b/3a5f0daad6295171fa481d50f890ae954e96fdf74ff99614773c348817e28b349cfea903e4db32104ede12201e8d9f25fcd03785feb3d4c8c51ffb62cca196
2022-08-14 01:14:53 +08:00

28 lines
689 B
Text

var baseRandom = require('./_baseRandom');
/**
* A specialized version of `_.shuffle` which mutates and sets the size of `array`.
*
* @private
* @param {Array} array The array to shuffle.
* @param {number} [size=array.length] The size of `array`.
* @returns {Array} Returns `array`.
*/
function shuffleSelf(array, size) {
var index = -1,
length = array.length,
lastIndex = length - 1;
size = size === undefined ? length : size;
while (++index < size) {
var rand = baseRandom(index, lastIndex),
value = array[rand];
array[rand] = array[index];
array[index] = value;
}
array.length = size;
return array;
}
module.exports = shuffleSelf;