login/node_modules/underscore/cjs/_less.js
2022-12-19 15:48:51 +05:30

6 lines
152 B
JavaScript

// A version of the `<` operator that can be passed around as a function.
function less(left, right) {
return left < right;
}
module.exports = less;