summaryrefslogtreecommitdiff
path: root/node_modules/semver/functions/gt.js
blob: 84a57ddff50a098bafaa44973830114fa150c3fa (plain)
1
2
3
4
5
'use strict'

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