File size: 300 Bytes
dbb1bf9
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
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('');
}