* A specialized version of `_.shuffle` for arrays. * * @private * @param {Array} array The array to shuffle. * @returns {Array} Returns the new shuffled array.
(array)
| 10175 | * @returns {Array} Returns the new shuffled array. |
| 10176 | */ |
| 10177 | function arrayShuffle(array) { |
| 10178 | return shuffleSelf(copyArray(array)); |
| 10179 | } |
| 10180 | |
| 10181 | /** |
| 10182 | * This function is like `assignValue` except that it doesn't assign |
nothing calls this directly
no test coverage detected