Files
UptimeKuma-DiscordBot/Bot/node_modules/lodash/_baseLt.js
Laurens van der Drift 79335ea096 added code for bot
2024-05-27 21:46:01 +02:00

15 lines
354 B
JavaScript

/**
* 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;