Files
screenshot-tools/node_modules/semver/ranges/gtr.js
Frank John Begornia c926590e1d first commit
2025-12-23 01:51:15 +08:00

7 lines
231 B
JavaScript

'use strict'
// 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