This commit is contained in:
16
vscode-server-linux-x64-web/node_modules/semver/functions/parse.js
generated
vendored
Normal file
16
vscode-server-linux-x64-web/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
|
Reference in New Issue
Block a user