aboutsummaryrefslogtreecommitdiffstats
path: root/backend/node_modules/semver/functions/gte.js
blob: 5aeaa634707a0c464b55c81555779aefc36732bb (plain) (blame)
1
2
3
const compare = require('./compare')
const gte = (a, b, loose) => compare(a, b, loose) >= 0
module.exports = gte