9 lines
279 B
TypeScript
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);
|
|
}
|