Files
uTools-ProcessKiller/node_modules/lodash/chain/wrapperToString.js
fofolee 9446af6b84 v0.0.2
2019-03-27 15:56:00 +08:00

18 lines
342 B
JavaScript

/**
* 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;