Greasy Fork is available in English.

Country Code

ISO 3166-1 alpha-2

Dette scriptet burde ikke installeres direkte. Det er et bibliotek for andre script å inkludere med det nye metadirektivet // @require https://update.greasyfork.org/scripts/465957/1188611/Country%20Code.js

Forfatter
schimon
Versjon
23.04
Lagd
10.05.2023
Oppdatert
10.05.2023
Lisens
MIT

Usage:

countryCode["DE"] // "Germany"

Example:

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

Solution:

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