Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/npm/cli.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'node_modules/cli-table2/node_modules/lodash/lang/gte.js')
-rw-r--r--node_modules/cli-table2/node_modules/lodash/lang/gte.js25
1 files changed, 25 insertions, 0 deletions
diff --git a/node_modules/cli-table2/node_modules/lodash/lang/gte.js b/node_modules/cli-table2/node_modules/lodash/lang/gte.js
new file mode 100644
index 000000000..4a5ffb5cd
--- /dev/null
+++ b/node_modules/cli-table2/node_modules/lodash/lang/gte.js
@@ -0,0 +1,25 @@
+/**
+ * Checks if `value` is greater than or equal to `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 or equal to `other`, else `false`.
+ * @example
+ *
+ * _.gte(3, 1);
+ * // => true
+ *
+ * _.gte(3, 3);
+ * // => true
+ *
+ * _.gte(1, 3);
+ * // => false
+ */
+function gte(value, other) {
+ return value >= other;
+}
+
+module.exports = gte;