(ip: string)
| 103 | const LOCALHOST_IPS = new Set(['::1', '::ffff:127.0.0.1']) |
| 104 | |
| 105 | function isLocalhostIp(ip: string): boolean { |
| 106 | return ip.startsWith('127.') || LOCALHOST_IPS.has(ip) |
| 107 | } |
| 108 | |
| 109 | type ResolvedCountryAccess = Omit< |
| 110 | FreeModeCountryAccess, |
no outgoing calls
no test coverage detected