iso2ToCountryName() — supabase Function Reference
Architecture documentation for the iso2ToCountryName() function in geo.ts from the supabase codebase.
Entity Profile
Relationship Graph
Source Code
apps/studio/components/interfaces/Reports/utils/geo.ts lines 128–132
export const iso2ToCountryName = (iso2: string): string => {
const code = iso2.toUpperCase()
const entry = COUNTRIES.find((c) => c.code === code)
return entry?.name ?? code
}
Domain
Subdomains
Source
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free