lanan-old/rescue-user/node_modules/semver/ranges/gtr.js
愉快的大福 7dc28dc701 init
2024-07-17 14:16:22 +08:00

5 lines
217 B
JavaScript

// Determine if version is greater than all the versions possible in the range.
const outside = require('./outside')
const gtr = (version, range, options) => outside(version, range, '>', options)
module.exports = gtr