/**
* Checks if the first value is less than the second value.
* @param {*} first - The first value.
* @param {*} second - The second value.
* @returns {boolean} True if the first value is less than the second.
*/exportdefaultfunctionisLess(first, second) {
return first < second;
}