Comparing version 6.1.1 to 6.1.2
{ | ||
"name": "semver", | ||
"version": "6.1.1", | ||
"version": "6.1.2", | ||
"description": "The semantic version parser used by npm.", | ||
@@ -5,0 +5,0 @@ "main": "semver.js", |
@@ -813,3 +813,7 @@ exports = module.exports = SemVer | ||
if (typeof version === 'string') { | ||
version = new SemVer(version, this.options) | ||
try { | ||
version = new SemVer(version, this.options) | ||
} catch (er) { | ||
return false | ||
} | ||
} | ||
@@ -1265,3 +1269,7 @@ | ||
if (typeof version === 'string') { | ||
version = new SemVer(version, this.options) | ||
try { | ||
version = new SemVer(version, this.options) | ||
} catch (er) { | ||
return false | ||
} | ||
} | ||
@@ -1268,0 +1276,0 @@ |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
64286
1332