Urara-Blog/node_modules/.pnpm-store/v3/files/a2/ec381fb0ca080b64087fe515ea22e149ab8e1fecda239ed05751e2590464dd2b70d03cb1f24968de5f555706efecab739d45f75df0457c9a82f9cab8442eef
2022-08-14 01:14:53 +08:00

14 lines
354 B
Text

/**
* 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;
}
module.exports = baseLt;