This commit is contained in:
2024-11-27 15:08:17 +00:00
parent c08cf2d046
commit 0574d9bc7a
298 changed files with 29533 additions and 0 deletions

4
nodeJS/Learning/01/node_modules/semver/ranges/gtr.js generated vendored Normal file
View File

@@ -0,0 +1,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