We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 147d33f commit 822d516Copy full SHA for 822d516
scripts/audit-consumers.ts
@@ -12,7 +12,7 @@ import { features as webFeatures } from "../index.js";
12
// deduplicated by ID.
13
async function* chromeStatusFeatures() {
14
const num = 500;
15
- for (let start = 0 /* nothing here */; ; start += num) {
+ for (let start = 0; /* nothing here */ ; start += num) {
16
const url = `https://chromestatus.com/api/v0/features?start=${start}&num=${num}`;
17
const resp = await fetch(url);
18
if (!resp.ok) {
0 commit comments