Greasy Fork is available in English.

Country Code

ISO 3166-1 alpha-2

אין להתקין סקריפט זה ישירות. זוהי ספריה עבור סקריפטים אחרים // @require https://update.greasyfork.org/scripts/465957/1188611/Country%20Code.js

יוצר
schimon
גרסה
23.04
נוצר
10-05-2023
עודכן
10-05-2023
רישיון
MIT

Usage:

countryCode["DE"] // "Germany"

Example:

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

Solution:

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