Created
October 12, 2019 08:55
-
-
Save fa7ad/d884fc7b093be6eb69a729196dfb5452 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
function countryToEmoji (code) { | |
code = code.toUpperCase() | |
const [e1, e2] = [code.codePointAt(0) + 127397, code.codePointAt(1) + 127397] | |
return String.fromCodePoint(e1) + String.fromCodePoint(e2) | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment