93a45018171b7ea5717290a0bcfa2019a027d1f65374f56b44fcd8b101fe16a9e1f15c22d60802228df970cc82009a10b82cdff9178b3fad134f516873b556 355 B

1234567891011121314
  1. /**
  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. */
  10. function baseGt(value, other) {
  11. return value > other;
  12. }
  13. export default baseGt;