Greasy Fork is available in English.

Country Code

ISO 3166-1 alpha-2

Dette script bør ikke installeres direkte. Det er et bibliotek, som andre scripts kan inkludere med metadirektivet // @require https://update.greasyfork.org/scripts/465957/1188611/Country%20Code.js

Skaber
schimon
Version
23.04
Oprettet
10.05.2023
Opdateret
10.05.2023
Licens
MIT

Usage:

countryCode["DE"] // "Germany"

Example:

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

Solution:

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