UNPKG

lodash-es

Version:

The modern build of lodash exported as ES modules.

18 lines (16 loc) 340 B
/** * Produces the result of coercing the unwrapped value to a string. * * @name toString * @memberOf _ * @category Chain * @returns {string} Returns the coerced string value. * @example * * _([1, 2, 3]).toString(); * // => '1,2,3' */ function wrapperToString() { return (this.value() + ''); } export default wrapperToString;