This repository has been archived on 2025-01-22. You can view files and clone it, but cannot push or open issues or pull requests.
limepot-xyz/mybulma/node_modules/semver/ranges/gtr.js
2023-01-27 19:21:00 -07:00

4 lines
217 B
JavaScript

// 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