* 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)
| 20187 | * // => '1,2,3' |
| 20188 | */ |
| 20189 | function toString(value) { |
| 20190 | return value == null ? '' : baseToString(value); |
| 20191 | } |
| 20192 | |
| 20193 | /*------------------------------------------------------------------------*/ |
| 20194 |
no test coverage detected