blob: c1dd879b9a71cf9c5776b37f982cf3f6f2250480 (
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
26
27
|
/*
* 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 es from '../locales/es';
import es_MX from '../locales/es_MX';
/**
* The faker instance for the `es_MX` locale.
*
* - Language: Spanish (Mexico)
* - Endonym: Español (México)
*
* This instance uses the following locales internally (in descending precedence):
*
* - `es_MX`
* - `es`
* - `en`
* - `base`
*/
export const faker = new Faker({
locale: [es_MX, es, en, base],
});
|