* 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 c
(value)
| 12654 | * // => '1,2,3' |
| 12655 | */ |
| 12656 | function toString(value) { |
| 12657 | return value == null ? '' : baseToString(value); |
| 12658 | } |
| 12659 | |
| 12660 | /*------------------------------------------------------------------------*/ |
| 12661 |
no test coverage detected