1/** 2 * Checks if `value` is less than `other`. 3 * 4 * @static 5 * @memberOf _ 6 * @category Lang 7 * @param {*} value The value to compare. 8 * @param {*} other The other value to compare. 9 * @returns {boolean} Returns `true` if `value` is less than `other`, else `false`. 10 * @example 11 * 12 * _.lt(1, 3); 13 * // => true 14 * 15 * _.lt(3, 3); 16 * // => false 17 * 18 * _.lt(3, 1); 19 * // => false 20 */ 21function lt(value, other) { 22 return value < other; 23} 24 25module.exports = lt; 26 27