Skip to content

Instantly share code, notes, and snippets.

View sacarino's full-sized avatar

Shane sacarino

View GitHub Profile
@sacarino
sacarino / country-code-to-flag-emoji.js
Created July 21, 2023 01:48
nstead of showing country codes (ie US, CH, NL), show the flag emojis, 🇺🇸 🇨🇭 and 🇳🇱
// thanks to https://dev.to/jorik/country-code-to-flag-emoji-a21
function getFlagEmoji(countryCode) {
const codePoints = countryCode
.toUpperCase()
.split('')
.map(char => 127397 + char.charCodeAt());
return String.fromCodePoint(...codePoints);
}