lanan-repair/node_modules/semver/functions/lt.js

4 lines
110 B
JavaScript
Raw Permalink Normal View History

2024-09-24 21:20:37 +08:00
const compare = require('./compare')
const lt = (a, b, loose) => compare(a, b, loose) < 0
module.exports = lt