* The base implementation of `_.shuffle`. * * @private * @param {Array|Object} collection The collection to shuffle. * @returns {Array} Returns the new shuffled array.
(collection)
| 14661 | * @returns {Array} Returns the new shuffled array. |
| 14662 | */ |
| 14663 | function baseShuffle(collection) { |
| 14664 | return shuffleSelf(values(collection)); |
| 14665 | } |
| 14666 | |
| 14667 | /** |
| 14668 | * The base implementation of `_.slice` without an iteratee call guard. |
nothing calls this directly
no test coverage detected