ac331013a9e393f8edecf017ab5c107277f74ee71d8f986e429d37ef977663254f554bc776d49e87ac00ef532f5dd46af7e069c8195d614bfdbf3c924adb28 352 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. export default baseLt;