Socialify

Folder ..

Viewing en_BORK.ts
14 lines (12 loc) • 234.0 B

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

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

export = faker;