sms-gateway/node_modules/semver/functions/gt.js
2026-03-04 19:30:01 +01:00

5 lines
124 B
JavaScript

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