UNPKG
react-world-flags
Version:
latest (1.6.0)
1.6.0
1.5.1
1.5.0
1.4.0
1.3.0
1.2.4
1.2.3
1.2.2
1.2.1
1.2.0
1.1.0
1.0.0
0.0.3
0.0.2
0.0.1
SVG flags of the world for react
github.com/smucode/react-world-flags
smucode/react-world-flags
react-world-flags
/
src
/
country.js
10 lines
(8 loc)
•
261 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
import
countries
from
'world-countries'
export
const
getAlphaTwoCode
= code => {
const
uc =
String
(code).
toUpperCase
()
const
country = countries.
find
(
c
=>
c.
cca2
=== uc || c.
ccn3
=== uc || c.
cca3
== uc )
return
(country && country.
cca2
) || code }