countries

This will change

To swap the abbreviations and names. Abbreviations should be the object keys.

Examples

import { countries } from "@preemptivelove/utilities-js"
<select>
{ Object.keys( countries ).map( ( name, key ) => (
<option key={ key } value={ countries[name] }>
{ name }
</option>
) ) }
</select>

Source

https://github.com/PreemptiveLove/utilities-js/blob/master/src/data/countries.js