Files
GNX-mailEnterprise/frontend/node_modules/semver/ranges/gtr.js
Iliyan Angelov c67067a2a4 Mail
2025-09-14 23:24:25 +03: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