yingsa/server/node_modules/semver/functions/gt.js
2026-01-20 08:50:50 +08:00

6 lines
124 B
JavaScript

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