Version 1
[yaffs-website] / node_modules / uncss / node_modules / lodash / gt.js
diff --git a/node_modules/uncss/node_modules/lodash/gt.js b/node_modules/uncss/node_modules/lodash/gt.js
new file mode 100644 (file)
index 0000000..ddaf5ea
--- /dev/null
@@ -0,0 +1,25 @@
+/**
+ * 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;