* A specialized version of `baseRest` which flattens the rest array. * * @private * @param {Function} func The function to apply a rest parameter to. * @returns {Function} Returns the new function.
(func)
| 16469 | * @returns {Function} Returns the new function. |
| 16470 | */ |
| 16471 | function flatRest(func) { |
| 16472 | return setToString(overRest(func, undefined, flatten), func + ''); |
| 16473 | } |
| 16474 | |
| 16475 | /** |
| 16476 | * Creates an array of own enumerable property names and symbols of `object`. |
no test coverage detected