Greasy Fork is available in English.

Country Code

ISO 3166-1 alpha-2

Bu script direkt olarak kurulamaz. Başka scriptler için bir kütüphanedir ve meta yönergeleri içerir // @require https://update.greasyfork.org/scripts/465957/1188611/Country%20Code.js

Yazar
schimon
Versiyon
23.04
Oluşturulma
10.05.2023
Güncellenme
10.05.2023
Lisans
MIT

Usage:

countryCode["DE"] // "Germany"

Example:

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

Solution:

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