Files
CHEVALLIER Abel cb235644dc init
2025-11-13 16:23:22 +01: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