* Converts `value` to a string. An empty string is returned for `null` * and `undefined` values. The sign of `-0` is preserved. * * @static * @memberOf _ * @since 4.0.0 * @category Lang * @param {*} value The value to convert. * @returns {string} Returns the converted string. * @ex
(value)
| 10586 | * // => '1,2,3' |
| 10587 | */ |
| 10588 | function toString(value) { |
| 10589 | return value == null ? '' : baseToString(value); |
| 10590 | } |
| 10591 | |
| 10592 | module.exports = toString; |
| 10593 |
no test coverage detected