rittenhop-dev/versions/5.94.2/node_modules/lodash-es/_baseLt.js

15 lines
352 B
JavaScript
Raw Normal View History

2024-09-23 19:40:12 -04:00
/**
* The base implementation of `_.lt` which doesn't coerce arguments.
*
* @private
* @param {*} value The value to compare.
* @param {*} other The other value to compare.
* @returns {boolean} Returns `true` if `value` is less than `other`,
* else `false`.
*/
function baseLt(value, other) {
return value < other;
}
export default baseLt;