aboutsummaryrefslogtreecommitdiffstats
path: root/vanilla/node_modules/semver/functions/lt.js
blob: 2fb32a0e63c9a140cc3acb351cd5ce6c3c75d501 (plain) (blame)
1
2
3
4
5
'use strict'

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