BE-SPAN/node_modules/semver/functions/gt.js
githubna-ilham 722cd440e8 first commit
2024-10-20 22:04:16 +07:00

4 lines
110 B
JavaScript

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