var Symbol = ,
arrayMap = ,
isArray = ,
isSymbol = ;
/** Used as references for various `Number` constants. */
var INFINITY = 1 / 0;
/** Used to convert symbols to primitives and strings. */
var symbolProto = Symbol ? : undefined,
symbolToString = symbolProto ? symbolProto. : undefined;
/**
* The base implementation of `_.toString` which doesn't convert nullish
* values to empty strings.
*
* @private
* @param {*} value The value to process.
* @returns {string} Returns the string.
*/
module.exports = baseToString;