aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/chain/wrapperToString.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/chain/wrapperToString.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/chain/wrapperToString.js17
1 files changed, 0 insertions, 17 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/chain/wrapperToString.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/chain/wrapperToString.js
deleted file mode 100644
index db975a5a..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/chain/wrapperToString.js
+++ /dev/null
@@ -1,17 +0,0 @@
-/**
- * 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;