* 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)
| 13580 | * @returns {Function} Returns the new function. |
| 13581 | */ |
| 13582 | function flatRest(func) { |
| 13583 | return setToString(overRest(func, undefined, flatten), func + ''); |
| 13584 | } |
| 13585 | |
| 13586 | /** |
| 13587 | * Creates an array of own enumerable property names and symbols of `object`. |
no test coverage detected