aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/math/add.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/math/add.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/math/add.js19
1 files changed, 0 insertions, 19 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/math/add.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/math/add.js
deleted file mode 100644
index 59ced2fb..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/math/add.js
+++ /dev/null
@@ -1,19 +0,0 @@
-/**
- * Adds two numbers.
- *
- * @static
- * @memberOf _
- * @category Math
- * @param {number} augend The first number to add.
- * @param {number} addend The second number to add.
- * @returns {number} Returns the sum.
- * @example
- *
- * _.add(6, 4);
- * // => 10
- */
-function add(augend, addend) {
- return (+augend || 0) + (+addend || 0);
-}
-
-module.exports = add;