blob: b92ae23b023ab839184019e1433450ff38d189b4 (
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 zh_CN from '../locales/zh_CN';
/**
* The faker instance for the `zh_CN` locale.
*
* - Language: Chinese (China)
* - Endonym: 中文 (中国)
*
* This instance uses the following locales internally (in descending precedence):
*
* - `zh_CN`
* - `en`
* - `base`
*/
export const faker = new Faker({
locale: [zh_CN, en, base],
});
|