blob: 502d273ca855b45c798b8683e04cf73478c90699 [file] [log] [blame]
Leo Repp58b9f112021-11-22 11:57:47 +01001/**
2 * The base implementation of `_.gt` which doesn't coerce arguments.
3 *
4 * @private
5 * @param {*} value The value to compare.
6 * @param {*} other The other value to compare.
7 * @returns {boolean} Returns `true` if `value` is greater than `other`,
8 * else `false`.
9 */
10function baseGt(value, other) {
11 return value > other;
12}
13
14module.exports = baseGt;