UNPKG

@ou-imdt/utils

Version:

Utility library for interactive media development

9 lines 293 B
/** * 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. */ export default function isLess(first, second) { return first < second; }