eslintwork/node_modules/semver/functions/lt.js
Martin Donnelly 9cbf1eea5b init
2021-06-24 09:26:17 +01:00

4 lines
110 B
JavaScript

const compare = require('./compare')
const lt = (a, b, loose) => compare(a, b, loose) < 0
module.exports = lt