Socialify

Folder ..

Viewing zh_TW.ts
14 lines (12 loc) • 226.0 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
import { Faker } from '..';
import zh_TW from '../locales/zh_TW';
import en from '../locales/en';

const faker = new Faker({
  locale: 'zh_TW',
  localeFallback: 'en',
  locales: {
    zh_TW,
    en,
  },
});

export = faker;