Version 1
[yaffs-website] / node_modules / grunt-legacy-log / node_modules / lodash / chain / wrapperToString.js
diff --git a/node_modules/grunt-legacy-log/node_modules/lodash/chain/wrapperToString.js b/node_modules/grunt-legacy-log/node_modules/lodash/chain/wrapperToString.js
new file mode 100644 (file)
index 0000000..db975a5
--- /dev/null
@@ -0,0 +1,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;