speedclimbing/website

View on GitHub
src/utils/getFlagEmoji.ts

Summary

Maintainability
A
0 mins
Test Coverage
export function getFlagEmoji(countryCode: string) {
    const codePoints = countryCode
        .toUpperCase()
        .split('')
        .map((char) => 127397 + char.charCodeAt(0));
    return String.fromCodePoint(...codePoints);
}