ccc-tnt-psd2ui/npm-packages/mac-v2.4.x/semver/functions/inc.js

19 lines
400 B
JavaScript
Raw Permalink Normal View History

2023-07-24 03:13:08 +00:00
const SemVer = require('../classes/semver')
2023-07-27 07:04:13 +00:00
const inc = (version, release, options, identifier) => {
2023-07-24 03:13:08 +00:00
if (typeof (options) === 'string') {
identifier = options
options = undefined
}
try {
return new SemVer(
version instanceof SemVer ? version.version : version,
options
2023-07-27 07:04:13 +00:00
).inc(release, identifier).version
2023-07-24 03:13:08 +00:00
} catch (er) {
return null
}
}
module.exports = inc