This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import dns from 'node:dns'; | |
import fetch from 'node-fetch'; | |
import regions from "./regions.json" assert { type: "json" }; | |
import fs from 'node:fs'; | |
const IPINFO_API_KEY = "key here"; | |
const loops = 15000; | |
var regionscomplete = {}; |