Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
lodash / chain / wrapperToString.js
Size: Mime:
/**
 * 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() + '');
}

module.exports = wrapperToString;