Sha256: 00c694b21ee571ad4d1425dc2e0c7fab0faf725d5a657ceded48612db19afe99
Contents?: true
Size: 458 Bytes
Versions: 153
Compression:
Stored size: 458 Bytes
Contents
/** * Checks if `value` is less than `other`. * * @static * @memberOf _ * @category Lang * @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`. * @example * * _.lt(1, 3); * // => true * * _.lt(3, 3); * // => false * * _.lt(3, 1); * // => false */ function lt(value, other) { return value < other; } module.exports = lt;
Version data entries
153 entries across 80 versions & 8 rubygems