Initial pass

This commit is contained in:
Luca Casonato
2021-04-10 02:16:12 +02:00
parent 46a70c2176
commit 62abc69248
331 changed files with 50799 additions and 0 deletions

15
node_modules/semver/functions/inc.js generated vendored Normal file
View File

@@ -0,0 +1,15 @@
const SemVer = require('../classes/semver')
const inc = (version, release, options, identifier) => {
if (typeof (options) === 'string') {
identifier = options
options = undefined
}
try {
return new SemVer(version, options).inc(release, identifier).version
} catch (er) {
return null
}
}
module.exports = inc