Skip to content

Commit

Permalink
Remove type annotation
Browse files Browse the repository at this point in the history
  • Loading branch information
Jym77 committed Dec 8, 2023
1 parent 28e3be9 commit f8b1365
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions packages/alfa-compatibility/scripts/browsers.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,6 @@ const path = require("path");
const prettier = require("prettier");
const data = require("@mdn/browser-compat-data");

/**
* @type {Array<import("mdn-browser-compat-data/types").BrowserNames>}
*/
const include = ["chrome", "edge", "firefox", "ie", "opera", "safari"];

const { keys } = Object;
Expand Down Expand Up @@ -69,12 +66,12 @@ export const Browsers = {
.map(
(release) => `
"${release.version}": { date: ${release.date} }
`
`,
)
.join(",\n")}
}
}
`
`,
)
.join(",\n\n")}
};
Expand Down

0 comments on commit f8b1365

Please sign in to comment.