Initial commit

This commit is contained in:
zvspany
2026-03-07 16:34:10 +01:00
commit 48d3ac684f
524 changed files with 9352 additions and 0 deletions

50
lib/fiat-flag-codes.ts Normal file
View File

@@ -0,0 +1,50 @@
export const FIAT_FLAG_CODES = new Set<string>([
"aed",
"ars",
"aud",
"bdt",
"bgn",
"brl",
"cad",
"chf",
"clp",
"cny",
"cop",
"czk",
"dkk",
"eur",
"gbp",
"gel",
"hkd",
"hrk",
"huf",
"idr",
"inr",
"jmd",
"jpy",
"kes",
"krw",
"lkr",
"mad",
"mxn",
"myr",
"ngn",
"nok",
"npr",
"nzd",
"pen",
"php",
"pkr",
"pln",
"ron",
"rub",
"sar",
"sek",
"sgd",
"thb",
"try",
"uah",
"usd",
"vnd",
"zar"
]);