aboutsummaryrefslogtreecommitdiffstats
path: root/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/lang/gt.js
diff options
context:
space:
mode:
Diffstat (limited to 'vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/lang/gt.js')
-rw-r--r--vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/lang/gt.js25
1 files changed, 0 insertions, 25 deletions
diff --git a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/lang/gt.js b/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/lang/gt.js
deleted file mode 100644
index ddaf5ea0..00000000
--- a/vnfmarket/src/main/webapp/vnfmarket/node_modules/lodash/lang/gt.js
+++ /dev/null
@@ -1,25 +0,0 @@
-/**
- * Checks if `value` is greater than `other`.
- *
- * @static
- * @memberOf _
- * @category Lang
- * @param {*} value The value to compare.
- * @param {*} other The other value to compare.
- * @returns {boolean} Returns `true` if `value` is greater than `other`, else `false`.
- * @example
- *
- * _.gt(3, 1);
- * // => true
- *
- * _.gt(3, 3);
- * // => false
- *
- * _.gt(1, 3);
- * // => false
- */
-function gt(value, other) {
- return value > other;
-}
-
-module.exports = gt;