summaryrefslogtreecommitdiff
path: root/tools/eslint/node_modules/js-yaml/node_modules/argparse/node_modules/lodash/chain/wrapperToString.js
blob: db975a5a35427f5b64671d94caca4753fe9835ce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
/**
 * 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;