mirror of
https://github.com/Sevichecc/Urara-Blog.git
synced 2025-05-05 18:59:30 +08:00
15 lines
336 B
Text
15 lines
336 B
Text
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
|