|
@@ -5,6 +5,9 @@ const asciiOffset = 0x41;
|
|
|
const flagShift = flagOffset - asciiOffset;
|
|
|
|
|
|
const flagLookup = country => {
|
|
|
+ if (country === null) {
|
|
|
+ return '🌎';
|
|
|
+ }
|
|
|
const upper = country.toUpperCase();
|
|
|
const firstChar = upper.charCodeAt(0) + flagShift;
|
|
|
const secondChar = upper.charCodeAt(1) + flagShift;
|