Files
lodash/.internal/arrayShuffle.js
2017-01-10 00:45:05 -08:00

16 lines
379 B
JavaScript

import copyArray from './.internal/copyArray.js';
import shuffleSelf from './.internal/shuffleSelf.js';
/**
* A specialized version of `shuffle` for arrays.
*
* @private
* @param {Array} array The array to shuffle.
* @returns {Array} Returns the new shuffled array.
*/
function arrayShuffle(array) {
return shuffleSelf(copyArray(array));
}
export default arrayShuffle;