Skip to content

Commit bbabb7f

Browse files
authored
Merge branch 'next' into feat/bigint-multiple-of
2 parents c563103 + ae9aec6 commit bbabb7f

File tree

12 files changed

+584
-131
lines changed

12 files changed

+584
-131
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<p>Generate massive amounts of fake (but realistic) data for testing and development.</p>
55

66
[![npm version](https://badgen.net/npm/v/@faker-js/faker)](https://www.npmjs.com/package/@faker-js/faker)
7-
[![npm downloads](https://badgen.net/npm/dm/@faker-js/faker)](https://npm-compare.com/@faker-js/faker/#timeRange=ALL)
7+
[![npm downloads](https://badgen.net/npm/dm/@faker-js/faker)](https://www.npmjs.com/package/@faker-js/faker)
88
[![Continuous Integration](https://github.com/faker-js/faker/actions/workflows/ci.yml/badge.svg)](https://github.com/faker-js/faker/actions/workflows/ci.yml)
99
[![codecov](https://codecov.io/gh/faker-js/faker/branch/next/graph/badge.svg?token=N61U168G08)](https://codecov.io/gh/faker-js/faker)
1010
[![Chat on Discord](https://img.shields.io/badge/chat-discord-blue?style=flat&logo=discord)](https://chat.fakerjs.dev)

pnpm-lock.yaml

Lines changed: 117 additions & 127 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

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)