_arrayShuffle.js 363 B

123456789101112131415
  1. import copyArray from './_copyArray.js';
  2. import shuffleSelf from './_shuffleSelf.js';
  3. /**
  4. * A specialized version of `_.shuffle` for arrays.
  5. *
  6. * @private
  7. * @param {Array} array The array to shuffle.
  8. * @returns {Array} Returns the new shuffled array.
  9. */
  10. function arrayShuffle(array) {
  11. return shuffleSelf(copyArray(array));
  12. }
  13. export default arrayShuffle;