blob: 32db5f3779d63d608dc6de7f6c81cfebb00b7ee9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
|
/*
* This file is automatically generated.
* Run 'pnpm run generate:locales' to update.
*/
import { Faker } from '../faker';
import base from '../locales/base';
import en from '../locales/en';
import nl from '../locales/nl';
/**
* The faker instance for the `nl` locale.
*
* - Language: Dutch
* - Endonym: Nederlands
*
* This instance uses the following locales internally (in descending precedence):
*
* - `nl`
* - `en`
* - `base`
*/
export const faker = new Faker({
locale: [nl, en, base],
});
|