domain-watchdog/assets/utils/functions/getCountryCode.tsx
2024-08-22 01:44:50 +02:00

5 lines
218 B
TypeScript

export const getCountryCode = (tld: string): string => {
const exceptions = {uk: 'gb', su: 'ru', tp: 'tl'}
if (tld in exceptions) return exceptions[tld as keyof typeof exceptions]
return tld.toUpperCase()
}