3 lines
170 B
TypeScript
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); |