Files
action/node_modules/semver/ranges/gtr.js
T
Chromatic 4a6485da4e v16.4.0
2026-04-21 15:42:56 +00: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