polyfills-db
Advanced tools
Comparing version 1.19.1 to 1.19.2
@@ -90,3 +90,6 @@ | ||
// versions are listed in ascending order | ||
var versions = Object.keys(obj).sort(function (a, b) { | ||
var versions = Object.keys(obj).filter(function (version) { | ||
if (~version.indexOf('-')) return true; | ||
return semver.validRange(version); | ||
}).sort(function (a, b) { | ||
return semver.compare(semverify(a), semverify(b)) | ||
@@ -93,0 +96,0 @@ }) |
{ | ||
"name": "polyfills-db", | ||
"description": "browser feature database", | ||
"version": "1.19.1", | ||
"version": "1.19.2", | ||
"author": { | ||
@@ -6,0 +6,0 @@ "name": "Jonathan Ong", |
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
31190
935