1
0
mirror of https://github.com/actions/setup-node synced 2025-05-04 06:03:52 +00:00
setup-node/node_modules/lodash/_baseLt.js
eric sciple 2b95e76931 .
2020-01-24 12:20:19 -05: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;