ec381fb0ca080b64087fe515ea22e149ab8e1fecda239ed05751e2590464dd2b70d03cb1f24968de5f555706efecab739d45f75df0457c9a82f9cab8442eef 354 B

1234567891011121314
  1. /**
  2. * The base implementation of `_.lt` 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 less than `other`,
  8. * else `false`.
  9. */
  10. function baseLt(value, other) {
  11. return value < other;
  12. }
  13. module.exports = baseLt;