This commit is contained in:
parent
55470c090d
commit
6947a1adba
1260 changed files with 111297 additions and 0 deletions
16
@capacitor/cli/node_modules/semver/functions/parse.js
generated
vendored
Normal file
16
@capacitor/cli/node_modules/semver/functions/parse.js
generated
vendored
Normal file
|
@ -0,0 +1,16 @@
|
|||
const SemVer = require('../classes/semver')
|
||||
const parse = (version, options, throwErrors = false) => {
|
||||
if (version instanceof SemVer) {
|
||||
return version
|
||||
}
|
||||
try {
|
||||
return new SemVer(version, options)
|
||||
} catch (er) {
|
||||
if (!throwErrors) {
|
||||
return null
|
||||
}
|
||||
throw er
|
||||
}
|
||||
}
|
||||
|
||||
module.exports = parse
|
Loading…
Add table
Add a link
Reference in a new issue