Files
pichunt/shared/utils/flag.ts
T
2025-08-20 23:18:40 +02:00

9 lines
279 B
TypeScript

// Source: https://dev.to/jorik/country-code-to-flag-emoji-a21
export function getFlagEmoji(countryCode: string) {
const codePoints = countryCode
.toUpperCase()
.split('')
.map((char) => 127397 + char.charCodeAt(0));
return String.fromCodePoint(...codePoints);
}