* A specialized version of `_.shuffle` for arrays. * * @private * @param {Array} array The array to shuffle. * @returns {Array} Returns the new shuffled array.
(array)
| 13064 | * @returns {Array} Returns the new shuffled array. |
| 13065 | */ |
| 13066 | function arrayShuffle(array) { |
| 13067 | return shuffleSelf(copyArray(array)); |
| 13068 | } |
| 13069 | |
| 13070 | /** |
| 13071 | * This function is like `assignValue` except that it doesn't assign |
nothing calls this directly
no test coverage detected