MCPcopy Create free account
hub / github.com/RubyLouvre/anu / toString

Function toString

test/babel.js:10588–10590  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

10586 * // => '1,2,3'
10587 */
10588 function toString(value) {
10589 return value == null ? '' : baseToString(value);
10590 }
10591
10592 module.exports = toString;
10593

Callers 4

castPathFunction · 0.70
repeatFunction · 0.70
escapeRegExpFunction · 0.70
startsWithFunction · 0.70

Calls 1

baseToStringFunction · 0.85

Tested by

no test coverage detected