mirror of
https://github.com/fosrl/pangolin.git
synced 2026-02-01 07:39:09 +00:00
7 lines
226 B
TypeScript
7 lines
226 B
TypeScript
export function countryCodeToFlagEmoji(isoAlpha2: string) {
|
|
const codePoints = [...isoAlpha2.toUpperCase()].map(
|
|
(char) => 0x1f1e6 + char.charCodeAt(0) - 65
|
|
);
|
|
return String.fromCodePoint(...codePoints);
|
|
}
|