Non puoi selezionare più di 25 argomenti Gli argomenti devono iniziare con una lettera o un numero, possono includere trattini ('-') e possono essere lunghi fino a 35 caratteri.

14 righe
357 B

4 anni fa
  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. module.exports = baseGt;