* Converts `value` to a string using `Object.prototype.toString`. * * @private * @param {*} value The value to convert. * @returns {string} Returns the converted string.
(value)
| 14273 | * @returns {string} Returns the converted string. |
| 14274 | */ |
| 14275 | function objectToString(value) { |
| 14276 | return nativeObjectToString.call(value); |
| 14277 | } |
| 14278 | |
| 14279 | /** |
| 14280 | * A specialized version of `baseRest` which transforms the rest array. |
no outgoing calls
no test coverage detected