sparkast/lib/url/updateTLD.ts
2024-07-14 17:43:40 +08:00

3 lines
170 B
TypeScript

const response = await fetch("https://data.iana.org/TLD/tlds-alpha-by-domain.txt");
const tldText = await response.text();
await Bun.write("./lib/url/tlds.txt", tldText);