diff --git a/ui/util/country.js b/ui/util/country.js new file mode 100644 index 000000000..1a5c1a287 --- /dev/null +++ b/ui/util/country.js @@ -0,0 +1,18 @@ +import { countries as countryData } from 'country-data'; + +export const COUNTRIES = Array.from( + new Set( + countryData.all + .filter((country) => country.status !== 'deleted') + .map((country) => country.name) + .sort((a, b) => { + if (a > b) { + return 1; + } + if (b > a) { + return -1; + } + return 0; + }) + ) +);