Country Code

ISO 3166-1 alpha-2

Dit script moet niet direct worden geïnstalleerd - het is een bibliotheek voor andere scripts om op te nemen met de meta-richtlijn // @require https://update.greasyfork.org/scripts/465957/1188611/Country%20Code.js

Maker
schimon
Versie
23.04
Gemaakt op
10-05-2023
Bijgewerkt op
10-05-2023
Licentie
MIT

Usage:

countryCode["DE"] // "Germany"

Example:

nationCode = "de"
countryCode[nationCode] // undefined

Solution:

nationCode = nationCode.toUpperCase()
countryCode[nationCode] // "Germany"