Remove references to _.

This commit is contained in:
John-David Dalton
2017-01-09 17:38:33 -08:00
parent 65654f8f9e
commit 77cc37ba49
410 changed files with 875 additions and 1157 deletions

View File

@@ -5,20 +5,19 @@ import baseToString from './_baseToString.js';
* 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.
* @example
*
* _.toString(null);
* toString(null);
* // => ''
*
* _.toString(-0);
* toString(-0);
* // => '-0'
*
* _.toString([1, 2, 3]);
* toString([1, 2, 3]);
* // => '1,2,3'
*/
function toString(value) {