diff options
| author | DivisionByZero <[email protected]> | 2025-04-05 19:52:07 +0200 |
|---|---|---|
| committer | GitHub <[email protected]> | 2025-04-05 19:52:07 +0200 |
| commit | 7b120567139b2ac84d052f42f1f352c6697f2aa2 (patch) | |
| tree | b671165ba2fe4e06d4a8030acfc75227bde1c09a /src/modules | |
| parent | 048c32581bd5d15f333ef63e4ca968e02793373d (diff) | |
| download | faker-7b120567139b2ac84d052f42f1f352c6697f2aa2.tar.xz faker-7b120567139b2ac84d052f42f1f352c6697f2aa2.zip | |
fix(iban): more strict pattern for IE and PS (#3464)
Diffstat (limited to 'src/modules')
| -rw-r--r-- | src/modules/finance/iban.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/finance/iban.ts b/src/modules/finance/iban.ts index b730d365..dbb5e601 100644 --- a/src/modules/finance/iban.ts +++ b/src/modules/finance/iban.ts @@ -500,7 +500,7 @@ const iban: Iban = { total: 22, bban: [ { - type: 'c', + type: 'a', count: 4, }, { @@ -862,7 +862,7 @@ const iban: Iban = { total: 29, bban: [ { - type: 'c', + type: 'a', count: 4, }, { |
