GenerAI / worldmonitor /src /utils /country-flag.ts
amogaddy's picture
Integra World Monitor (AGPL-3.0, self-hosted) nello Space: pagina, menu, e arricchimento notizie per la AI (part 8)
dbb1bf9 verified
Raw
History Blame Contribute Delete
300 Bytes
export function toFlagEmoji(code: string, fallback = '🌍'): string {
const upperCode = code.trim().toUpperCase();
if (!/^[A-Z]{2}$/.test(upperCode)) return fallback;
return upperCode
.split('')
.map((char) => String.fromCodePoint(0x1f1e6 + char.charCodeAt(0) - 65))
.join('');
}