Skip to content

Commit

Permalink
newlines
Browse files Browse the repository at this point in the history
  • Loading branch information
styfle committed Oct 29, 2024
1 parent f3277fb commit 58ad35f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion test/ecmascript/update-all-data.mjs
Original file line number Diff line number Diff line change
@@ -1,11 +1,13 @@
import { readdir, writeFile } from 'fs/promises';
const dir = new URL('./', import.meta.url);

const dir = new URL('./', import.meta.url);
const files = await readdir(dir);

for (const file of files.filter(f => f.startsWith('data-'))) {
const url = `https://raw.githubusercontent.com/kangax/compat-table/gh-pages/${file}`;
const res = await fetch(url);
const text = await res.text();
await writeFile(new URL(file, dir), text);
}

console.log('Update complete!')

0 comments on commit 58ad35f

Please sign in to comment.