blob: db7e35599dd56651565ca7b85d752bb8f5dfe4a6 (
plain)
1
2
3
4
|
// 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
|