PR-URL: https://github.com/nodejs/node/pull/58696 Reviewed-By: Luigi Pinca <luigipinca@gmail.com> Reviewed-By: Rafael Gonzaga <rafael.nunu@hotmail.com>
6 lines
231 B
JavaScript
6 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
|