improvement: Fix incorrect Meeza credit card pattern

This commit is contained in:
Artem Chepurnoy 2024-05-28 19:35:40 +03:00
parent f1fbe5716c
commit 58e2840373
No known key found for this signature in database
GPG Key ID: FAC37D0CF674043E
1 changed files with 2 additions and 2 deletions

View File

@ -148,8 +148,8 @@ val creditCardMastercard = CreditCardType(
val creditCardMeeza = CreditCardType(
name = "Meeza",
digits = 16..16,
pattern = "^5078(03|09|10|11)\\d{10}\$".toRegex(),
eagerPattern = "^5078(03|09|10|11)".toRegex(),
pattern = "^5078(03|08|09|10)\\d{10}\$".toRegex(),
eagerPattern = "^5078(03|08|09|10)".toRegex(),
)
val creditCardMir = CreditCardType(