Skip to content

Commit ae9aec6

Browse files
authored
feat(finance): add ISO 4217 numerical codes to Currency (#3404)
1 parent 57d39d7 commit ae9aec6

File tree

10 files changed

+466
-3
lines changed

10 files changed

+466
-3
lines changed

src/definitions/finance.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ export type FinanceDefinition = LocaleEntry<{
1818
credit_card: { [issuer: string]: string[] };
1919

2020
/**
21-
* Currencies including their name, code and symbol (e.g. `US Dollar` / `USD` / `$`).
21+
* Currencies including their name, code, symbol and ISO numeric code (e.g. `US Dollar` / `USD` / `$` / '840').
2222
*/
2323
currency: Currency[];
2424

src/locales/el/finance/currency.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,6 @@ export default [
33
name: 'Ευρώ',
44
code: 'EUR',
55
symbol: '€',
6+
numericCode: '978',
67
},
78
];

0 commit comments

Comments
 (0)