* A specialized version of `_.shuffle` for arrays. * * @private * @param {Array} array The array to shuffle. * @returns {Array} Returns the new shuffled array.
(array)
| 2486 | * @returns {Array} Returns the new shuffled array. |
| 2487 | */ |
| 2488 | function arrayShuffle(array) { |
| 2489 | return shuffleSelf(copyArray(array)); |
| 2490 | } |
| 2491 | |
| 2492 | /** |
| 2493 | * This function is like `assignValue` except that it doesn't assign |
nothing calls this directly
no test coverage detected