Newer
Older
2022-autumn-study / node_modules / semver / functions / gt.js
@ItoRino ItoRino on 4 Oct 2022 110 bytes first commit
const compare = require('./compare')
const gt = (a, b, loose) => compare(a, b, loose) > 0
module.exports = gt