We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 85d805d commit af3845dCopy full SHA for af3845d
lib/BrowserSelection.js
@@ -145,6 +145,7 @@ export default class BrowserSelection {
145
for (const key of Object.keys(FEATURES)) {
146
const feature = /** @type {keyof FEATURES} */ (key);
147
const packedFeature = caniuse.features[feature];
148
+ if (!packedFeature) continue; // Ignore removed features
149
const featureData = caniuse.feature(packedFeature);
150
const lackData = this.filterStats(featureData.stats);
151
const missingData = lackData.missing;
0 commit comments