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