ccc-tnt-psd2ui/npm-packages/mac-v3.4.+/semver/functions/gt.js
2023-07-24 11:13:08 +08:00

4 lines
110 B
JavaScript

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