Files
lodash/.internal/arrayShuffle.js
John-David Dalton aa60e55db4 Update module paths.
2017-01-11 10:06:12 -08:00

16 lines
359 B
JavaScript

import copyArray from './copyArray.js';
import shuffleSelf from './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;