ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/semver/functions/lt.js

4 lines
110 B
JavaScript
Raw Normal View History

2023-07-24 03:13:08 +00:00
const compare = require('./compare')
const lt = (a, b, loose) => compare(a, b, loose) < 0
module.exports = lt