* 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 process. * @returns {string} Returns the string. * @example * * _.toStr
(value)
| 925 | * // => '1,2,3' |
| 926 | */ |
| 927 | function toString(value) { |
| 928 | return value == null ? '' : baseToString(value); |
| 929 | } |
| 930 | |
| 931 | /** |
| 932 | * Gets the value at `path` of `object`. If the resolved value is |
no test coverage detected
searching dependent graphs…