diff options
| author | Jelle Hulter <[email protected]> | 2022-03-23 09:29:48 +0100 |
|---|---|---|
| committer | GitHub <[email protected]> | 2022-03-23 08:29:48 +0000 |
| commit | 3f3de78c83ae919fd44531ac7ae9caed885800d4 (patch) | |
| tree | b3a251e2abeeab40931d9bde65cfe3a2f89584cd /src | |
| parent | a759c8707c2e3758e64e1c174c2de7aad51cd64b (diff) | |
| download | faker-3f3de78c83ae919fd44531ac7ae9caed885800d4.tar.xz faker-3f3de78c83ae919fd44531ac7ae9caed885800d4.zip | |
fix: corrected the Costa Rican IBAN format (#646)
Diffstat (limited to 'src')
| -rw-r--r-- | src/iban.ts | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/src/iban.ts b/src/iban.ts index 3f10e91b..b608357e 100644 --- a/src/iban.ts +++ b/src/iban.ts @@ -206,10 +206,14 @@ export = { }, { country: 'CR', - total: 21, + total: 22, bban: [ { type: 'n', + count: 1, + }, + { + type: 'n', count: 3, }, { @@ -217,7 +221,7 @@ export = { count: 14, }, ], - format: 'CRkk bbbc cccc cccc cccc c', + format: 'CRkk xbbb cccc cccc cccc cc', }, { country: 'HR', |
