summaryrefslogtreecommitdiff
path: root/node_modules/semver/ranges/gtr.js
blob: 0e7601f693554a1c24854ca0be67447b70b7ca16 (plain)
1
2
3
4
5
6
'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