aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/utility/identity.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/utility/identity.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/utility/identity.js20
1 files changed, 0 insertions, 20 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/utility/identity.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/utility/identity.js
deleted file mode 100644
index 3a1d1d4c..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/utility/identity.js
+++ /dev/null
@@ -1,20 +0,0 @@
-/**
- * This method returns the first argument provided to it.
- *
- * @static
- * @memberOf _
- * @category Utility
- * @param {*} value Any value.
- * @returns {*} Returns `value`.
- * @example
- *
- * var object = { 'user': 'fred' };
- *
- * _.identity(object) === object;
- * // => true
- */
-function identity(value) {
- return value;
-}
-
-module.exports = identity;