Greasy Fork is available in English.

Country Code

ISO 3166-1 alpha-2

Ten skrypt nie powinien być instalowany bezpośrednio. Jest to biblioteka dla innych skyptów do włączenia dyrektywą meta // @require https://update.greasyfork.org/scripts/465957/1188611/Country%20Code.js

Autor
schimon
Wersja
23.04
Utworzono
10-05-2023
Zaktualizowano
10-05-2023
Licencja
MIT

Usage:

countryCode["DE"] // "Germany"

Example:

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

Solution:

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