Files
wechatpay-enterprise-web/node_modules/@npmcli/fs/node_modules/semver/functions/parse.js
jefferyzhao b9bdc8598b first commit
2025-07-31 17:44:12 +08:00

17 lines
317 B
JavaScript

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