| 4 | */ |
| 5 | |
| 6 | export interface GeoResult { |
| 7 | country: string; |
| 8 | code: string; // ISO 3166-1 alpha-2 (e.g. "IR", "US") |
| 9 | displayName: string; |
| 10 | } |
| 11 | |
| 12 | const cache = new Map<string, GeoResult | null>(); |
| 13 | let lastRequestTime = 0; |
nothing calls this directly
no outgoing calls
no test coverage detected