├── .devcontainer └── devcontainer.json ├── .editorconfig ├── .gitattributes ├── .github ├── .codecov.yml ├── CODEOWNERS ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ ├── feature_request.yml │ └── freestyle.md ├── commit-convention.md ├── pull_request_template.md ├── renovate.json5 └── workflows │ ├── check-mergable-by-label.yml │ ├── check-release-pr.yml │ ├── ci.yml │ ├── comment-issue.yml │ ├── draft-release.yml │ ├── integration-test.yml │ ├── pr.yml │ ├── prepare-release-pr.yml │ ├── publish-release.yml │ └── semantic-pull-request.yml ├── .gitignore ├── .nvmrc ├── .prettierignore ├── .prettierrc.d.ts ├── .prettierrc.js ├── .versionrc.json ├── .vscode ├── extensions.json └── settings.json ├── BACKERS.md ├── CHANGELOG.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── cypress.config.ts ├── cypress ├── e2e │ ├── api.cy.ts │ ├── example-refresh.cy.ts │ └── guide.cy.ts └── tsconfig.json ├── docs ├── .vitepress │ ├── api-pages.ts │ ├── components │ │ ├── Banner.vue │ │ ├── api-docs │ │ │ ├── format.ts │ │ │ ├── locale.vue │ │ │ ├── method-parameters.vue │ │ │ ├── method.ts │ │ │ ├── method.vue │ │ │ ├── refresh-button.vue │ │ │ └── refresh.svg │ │ └── shims.d.ts │ ├── config.ts │ ├── shared │ │ └── utils │ │ │ └── slugify.ts │ ├── theme │ │ ├── index.css │ │ └── index.ts │ └── versions.ts ├── about │ ├── announcements.md │ ├── announcements │ │ ├── 2022-01-14.md │ │ ├── 2022-09-08.md │ │ └── 2024-10-26.md │ ├── roadmap │ │ ├── index.md │ │ ├── v6.md │ │ ├── v7.md │ │ ├── v8.md │ │ └── v9.md │ ├── team.md │ └── team │ │ ├── TeamPage.vue │ │ └── members.json ├── api │ ├── ApiIndex.vue │ ├── api-types.ts │ └── index.md ├── contributing │ ├── code-of-conduct.md │ ├── propose-a-feature.md │ ├── report-bugs.md │ ├── set-up-a-development-environment.md │ └── submit-a-pull-request.md ├── guide │ ├── frameworks.md │ ├── index.md │ ├── localization.md │ ├── randomizer.md │ ├── unique.md │ ├── upgrading.md │ └── usage.md ├── index.md └── public │ ├── first-week-wins.png │ ├── logo.svg │ └── social-image.png ├── eslint.config.ts ├── netlify.toml ├── package.json ├── pnpm-lock.yaml ├── scripts ├── apidocs.ts ├── apidocs │ ├── diff.ts │ ├── generate.ts │ ├── output │ │ ├── constants.ts │ │ ├── diff-index.ts │ │ ├── page-index.ts │ │ ├── page.ts │ │ ├── search-index.ts │ │ └── source-base-url.ts │ ├── processing │ │ ├── class.ts │ │ ├── error.ts │ │ ├── jsdocs.ts │ │ ├── method.ts │ │ ├── parameter.ts │ │ ├── signature.ts │ │ ├── source.ts │ │ └── type.ts │ ├── project.ts │ └── utils │ │ ├── format.ts │ │ ├── markdown.ts │ │ ├── paths.ts │ │ └── value-checks.ts ├── diff.ts ├── env.ts └── generate-locales.ts ├── src ├── definitions │ ├── airline.ts │ ├── animal.ts │ ├── book.ts │ ├── color.ts │ ├── commerce.ts │ ├── company.ts │ ├── database.ts │ ├── date.ts │ ├── definitions.ts │ ├── finance.ts │ ├── food.ts │ ├── hacker.ts │ ├── index.ts │ ├── internet.ts │ ├── location.ts │ ├── lorem.ts │ ├── metadata.ts │ ├── music.ts │ ├── person.ts │ ├── phone_number.ts │ ├── science.ts │ ├── system.ts │ ├── vehicle.ts │ └── word.ts ├── errors │ └── faker-error.ts ├── faker.ts ├── index.ts ├── internal │ ├── base32.ts │ ├── base64.ts │ ├── bind-this-to-member-functions.ts │ ├── date.ts │ ├── deprecated.ts │ ├── group-by.ts │ ├── keys.ts │ ├── locale-proxy.ts │ ├── mersenne.ts │ ├── module-base.ts │ ├── seed.ts │ └── types.ts ├── locale │ ├── af_ZA.ts │ ├── ar.ts │ ├── az.ts │ ├── base.ts │ ├── bn_BD.ts │ ├── cs_CZ.ts │ ├── cy.ts │ ├── da.ts │ ├── de.ts │ ├── de_AT.ts │ ├── de_CH.ts │ ├── dv.ts │ ├── el.ts │ ├── en.ts │ ├── en_AU.ts │ ├── en_AU_ocker.ts │ ├── en_BORK.ts │ ├── en_CA.ts │ ├── en_GB.ts │ ├── en_GH.ts │ ├── en_HK.ts │ ├── en_IE.ts │ ├── en_IN.ts │ ├── en_NG.ts │ ├── en_US.ts │ ├── en_ZA.ts │ ├── eo.ts │ ├── es.ts │ ├── es_MX.ts │ ├── fa.ts │ ├── fi.ts │ ├── fr.ts │ ├── fr_BE.ts │ ├── fr_CA.ts │ ├── fr_CH.ts │ ├── fr_LU.ts │ ├── fr_SN.ts │ ├── he.ts │ ├── hr.ts │ ├── hu.ts │ ├── hy.ts │ ├── id_ID.ts │ ├── index.ts │ ├── it.ts │ ├── ja.ts │ ├── ka_GE.ts │ ├── ko.ts │ ├── ku_ckb.ts │ ├── ku_kmr_latin.ts │ ├── lv.ts │ ├── mk.ts │ ├── nb_NO.ts │ ├── ne.ts │ ├── nl.ts │ ├── nl_BE.ts │ ├── pl.ts │ ├── pt_BR.ts │ ├── pt_PT.ts │ ├── ro.ts │ ├── ro_MD.ts │ ├── ru.ts │ ├── sk.ts │ ├── sl_SI.ts │ ├── sr_RS_latin.ts │ ├── sv.ts │ ├── ta_IN.ts │ ├── th.ts │ ├── tr.ts │ ├── uk.ts │ ├── ur.ts │ ├── uz_UZ_latin.ts │ ├── vi.ts │ ├── yo_NG.ts │ ├── zh_CN.ts │ ├── zh_TW.ts │ └── zu_ZA.ts ├── locales │ ├── af_ZA │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── ar │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ ├── team │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ └── vehicle │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ ├── az │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── base │ │ ├── color │ │ │ ├── index.ts │ │ │ └── space.ts │ │ ├── database │ │ │ ├── collation.ts │ │ │ ├── engine.ts │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ └── time_zone.ts │ │ ├── hacker │ │ │ ├── abbreviation.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── emoji.ts │ │ │ ├── http_status_code.ts │ │ │ ├── index.ts │ │ │ ├── jwt_algorithm.ts │ │ │ └── user_agent_pattern.ts │ │ ├── location │ │ │ ├── country_code.ts │ │ │ ├── index.ts │ │ │ └── time_zone.ts │ │ ├── metadata.ts │ │ └── system │ │ │ ├── directory_path.ts │ │ │ ├── index.ts │ │ │ └── mime_type.ts │ ├── bn_BD │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── continent.ts │ │ │ ├── country.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ └── state.ts │ │ └── metadata.ts │ ├── cs_CZ │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── cy │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ └── metadata.ts │ ├── da │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── company_name.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── de │ │ ├── animal │ │ │ ├── index.ts │ │ │ └── type.ts │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── database │ │ │ ├── column.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── nobility_title_prefix.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── de_AT │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── nobility_title_prefix.ts │ │ │ └── prefix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ └── index.ts │ ├── de_CH │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country_code.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── dv │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── el │ │ ├── app │ │ │ ├── author.ts │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── version.ts │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── credit_card │ │ │ │ ├── american_express.ts │ │ │ │ ├── discover.ts │ │ │ │ ├── index.ts │ │ │ │ ├── mastercard.ts │ │ │ │ └── visa.ts │ │ │ ├── currency.ts │ │ │ ├── index.ts │ │ │ └── transaction_type.ts │ │ ├── hacker │ │ │ ├── abbreviation.ts │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── team │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ ├── en │ │ ├── airline │ │ │ ├── airline.ts │ │ │ ├── airplane.ts │ │ │ ├── airport.ts │ │ │ └── index.ts │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── bird.ts │ │ │ ├── cat.ts │ │ │ ├── cetacean.ts │ │ │ ├── cow.ts │ │ │ ├── crocodilia.ts │ │ │ ├── dog.ts │ │ │ ├── fish.ts │ │ │ ├── horse.ts │ │ │ ├── index.ts │ │ │ ├── insect.ts │ │ │ ├── lion.ts │ │ │ ├── pet_name.ts │ │ │ ├── rabbit.ts │ │ │ ├── rodent.ts │ │ │ ├── snake.ts │ │ │ └── type.ts │ │ ├── app │ │ │ ├── author.ts │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── version.ts │ │ ├── book │ │ │ ├── author.ts │ │ │ ├── format.ts │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ ├── publisher.ts │ │ │ ├── series.ts │ │ │ └── title.ts │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── database │ │ │ ├── column.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── credit_card │ │ │ │ ├── american_express.ts │ │ │ │ ├── diners_club.ts │ │ │ │ ├── discover.ts │ │ │ │ ├── index.ts │ │ │ │ ├── jcb.ts │ │ │ │ ├── mastercard.ts │ │ │ │ └── visa.ts │ │ │ ├── currency.ts │ │ │ ├── index.ts │ │ │ ├── transaction_description_pattern.ts │ │ │ └── transaction_type.ts │ │ ├── food │ │ │ ├── adjective.ts │ │ │ ├── description_pattern.ts │ │ │ ├── dish.ts │ │ │ ├── dish_pattern.ts │ │ │ ├── ethnic_category.ts │ │ │ ├── fruit.ts │ │ │ ├── index.ts │ │ │ ├── ingredient.ts │ │ │ ├── meat.ts │ │ │ ├── spice.ts │ │ │ └── vegetable.ts │ │ ├── hacker │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── ingverb.ts │ │ │ ├── noun.ts │ │ │ ├── phrase.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── example_email.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── continent.ts │ │ │ ├── country.ts │ │ │ ├── county.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── language.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── album.ts │ │ │ ├── artist.ts │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ └── song_name.ts │ │ ├── person │ │ │ ├── bio_part.ts │ │ │ ├── bio_pattern.ts │ │ │ ├── bio_supporter.ts │ │ │ ├── first_name.ts │ │ │ ├── gender.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_title_pattern.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ ├── suffix.ts │ │ │ └── western_zodiac_sign.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── science │ │ │ ├── chemical_element.ts │ │ │ ├── index.ts │ │ │ └── unit.ts │ │ ├── team │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ ├── vehicle │ │ │ ├── bicycle_type.ts │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── en_AU │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_AU_ocker │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_BORK │ │ ├── index.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ ├── en_CA │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country_code.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── postcode_by_state.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_GB │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_infix.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_GH │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_HK │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── postcode_by_state.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_cantonese_part.ts │ │ │ ├── street_english_part.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_IE │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_pattern.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_IN │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_NG │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── en_US │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_pattern.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode_by_state.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── area_code.ts │ │ │ ├── exchange_code.ts │ │ │ └── index.ts │ ├── en_ZA │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── area_code.ts │ │ │ ├── exchange_code.ts │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── eo │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── crocodilia.ts │ │ │ ├── index.ts │ │ │ ├── lion.ts │ │ │ └── type.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── database │ │ │ ├── column.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── hacker │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── ingverb.ts │ │ │ ├── noun.ts │ │ │ ├── phrase.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── secondary_address.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── bio_part.ts │ │ │ ├── bio_pattern.ts │ │ │ ├── first_name.ts │ │ │ ├── gender.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ └── western_zodiac_sign.ts │ │ ├── science │ │ │ ├── chemical_element.ts │ │ │ ├── index.ts │ │ │ └── unit.ts │ │ └── vehicle │ │ │ ├── fuel.ts │ │ │ └── index.ts │ ├── es │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_title_pattern.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── es_MX │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── team │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ ├── fa │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── credit_card │ │ │ │ ├── index.ts │ │ │ │ ├── mastercard.ts │ │ │ │ └── visa.ts │ │ │ ├── currency.ts │ │ │ ├── index.ts │ │ │ └── transaction_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── example_email.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── genre.ts │ │ │ └── index.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── vehicle │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── fi │ │ ├── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ ├── fr │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── bird.ts │ │ │ ├── cat.ts │ │ │ ├── cetacean.ts │ │ │ ├── cow.ts │ │ │ ├── crocodilia.ts │ │ │ ├── dog.ts │ │ │ ├── fish.ts │ │ │ ├── horse.ts │ │ │ ├── index.ts │ │ │ ├── insect.ts │ │ │ ├── lion.ts │ │ │ ├── rabbit.ts │ │ │ ├── snake.ts │ │ │ └── type.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── currency.ts │ │ │ ├── index.ts │ │ │ └── transaction_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── genre.ts │ │ │ └── index.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_title_pattern.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── vehicle │ │ │ ├── bicycle_type.ts │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ └── type.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── fr_BE │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── gender.ts │ │ │ ├── index.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── fr_CA │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_pattern.ts │ │ │ ├── country_code.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── fr_CH │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── country_code.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── fr_LU │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ └── state.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── index.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── fr_SN │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ ├── he │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── county.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── genre.ts │ │ │ └── index.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── hr │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── hu │ │ ├── animal │ │ │ ├── cat.ts │ │ │ ├── dog.ts │ │ │ ├── horse.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── index.ts │ │ │ └── transaction_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── continent.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ ├── hy │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── id_ID │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── cetacean.ts │ │ │ ├── crocodilia.ts │ │ │ ├── fish.ts │ │ │ ├── index.ts │ │ │ ├── insect.ts │ │ │ ├── lion.ts │ │ │ ├── pet_name.ts │ │ │ ├── rabbit.ts │ │ │ ├── rodent.ts │ │ │ └── type.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── prefix.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── female_title.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── male_title.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── index.ts │ ├── it │ │ ├── company │ │ │ ├── adjective.ts │ │ │ ├── buzz_adjective.ts │ │ │ ├── buzz_noun.ts │ │ │ ├── buzz_verb.ts │ │ │ ├── descriptor.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── noun.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── ja │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── category.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── currency.ts │ │ │ ├── index.ts │ │ │ ├── transaction_description_pattern.ts │ │ │ └── transaction_type.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── sex.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── science │ │ │ ├── chemical_element.ts │ │ │ ├── index.ts │ │ │ └── unit.ts │ │ └── vehicle │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ └── type.ts │ ├── ka_GE │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── prefix.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── ko │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── bird.ts │ │ │ ├── cat.ts │ │ │ ├── index.ts │ │ │ ├── pet_name.ts │ │ │ └── rabbit.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── category.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_suffix.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_name_part.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── index.ts │ │ │ └── noun.ts │ ├── ku_ckb │ │ ├── index.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── middle_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ ├── ku_kmr_latin │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── index.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ ├── lv │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── prefix.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── mk │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── nb_NO │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_suffix.ts │ │ │ ├── common_street_suffix.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── science │ │ │ ├── chemical_element.ts │ │ │ ├── index.ts │ │ │ └── unit.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ └── interjection.ts │ ├── ne │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── nl │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── hacker │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ ├── phrase.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── nl_BE │ │ ├── company │ │ │ ├── index.ts │ │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── pl │ │ ├── animal │ │ │ ├── horse.ts │ │ │ └── index.ts │ │ ├── book │ │ │ ├── author.ts │ │ │ ├── format.ts │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ ├── publisher.ts │ │ │ ├── series.ts │ │ │ └── title.ts │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ └── song_name.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── gender.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── science │ │ │ ├── chemical_element.ts │ │ │ ├── index.ts │ │ │ └── unit.ts │ │ └── team │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ ├── pt_BR │ │ ├── book │ │ │ ├── author.ts │ │ │ ├── format.ts │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ ├── publisher.ts │ │ │ ├── series.ts │ │ │ └── title.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ ├── suffix.ts │ │ │ └── western_zodiac_sign.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ ├── pt_PT │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ └── verb.ts │ ├── ro │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── ro_MD │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name_part.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_prefix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── ru │ │ ├── book │ │ │ ├── author.ts │ │ │ ├── format.ts │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ ├── publisher.ts │ │ │ ├── series.ts │ │ │ └── title.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ ├── name_pattern.ts │ │ │ └── suffix.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── hacker │ │ │ ├── abbreviation.ts │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── ingverb.ts │ │ │ ├── noun.ts │ │ │ ├── phrase.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── sk │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── sl_SI │ │ ├── index.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── bio_part.ts │ │ │ ├── bio_pattern.ts │ │ │ ├── bio_supporter.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_title.ts │ │ │ ├── job_title_pattern.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ ├── suffix.ts │ │ │ └── western_zodiac_sign.ts │ ├── sr_RS_latin │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── sv │ │ ├── cell_phone │ │ │ ├── common_cell_prefix.ts │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── common_street_suffix.ts │ │ │ ├── country.ts │ │ │ ├── county.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ └── team │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── suffix.ts │ ├── ta_IN │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ └── metadata.ts │ ├── th │ │ ├── animal │ │ │ ├── cat.ts │ │ │ ├── dog.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── tr │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ └── prefix.ts │ │ └── phone_number │ │ │ ├── area_code.ts │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── uk │ │ ├── company │ │ │ ├── category.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ ├── street_prefix.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── job_type.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── middle_name.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── suffix.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── ur │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── cow.ts │ │ │ ├── crocodilia.ts │ │ │ ├── index.ts │ │ │ ├── insect.ts │ │ │ ├── lion.ts │ │ │ └── type.ts │ │ ├── app │ │ │ ├── author.ts │ │ │ ├── index.ts │ │ │ ├── name.ts │ │ │ └── version.ts │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ └── product_name.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── index.ts │ │ │ └── transaction_type.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── language.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── genre.ts │ │ │ └── index.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_area.ts │ │ │ ├── job_descriptor.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ ├── sex.ts │ │ │ └── suffix.ts │ │ ├── team │ │ │ ├── creature.ts │ │ │ ├── index.ts │ │ │ └── name.ts │ │ └── vehicle │ │ │ ├── bicycle_type.ts │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ ├── model.ts │ │ │ └── type.ts │ ├── uz_UZ_latin │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name_part.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── bio_parts.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── job_title.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── sex.ts │ ├── vi │ │ ├── cell_phone │ │ │ ├── formats.ts │ │ │ └── index.ts │ │ ├── company │ │ │ ├── index.ts │ │ │ ├── name_pattern.ts │ │ │ └── prefix.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── domain_suffix.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── country.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ └── street_pattern.ts │ │ ├── lorem │ │ │ ├── index.ts │ │ │ └── word.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ └── name.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ ├── yo_NG │ │ ├── index.ts │ │ ├── metadata.ts │ │ └── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ └── last_name_pattern.ts │ ├── zh_CN │ │ ├── airline │ │ │ ├── airline.ts │ │ │ ├── airplane.ts │ │ │ ├── airport.ts │ │ │ └── index.ts │ │ ├── animal │ │ │ ├── bear.ts │ │ │ ├── bird.ts │ │ │ ├── cat.ts │ │ │ ├── dog.ts │ │ │ ├── fish.ts │ │ │ ├── horse.ts │ │ │ ├── index.ts │ │ │ ├── insect.ts │ │ │ ├── pet_name.ts │ │ │ └── type.ts │ │ ├── book │ │ │ ├── author.ts │ │ │ ├── format.ts │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ ├── publisher.ts │ │ │ ├── series.ts │ │ │ └── title.ts │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── commerce │ │ │ ├── department.ts │ │ │ ├── index.ts │ │ │ ├── product_description.ts │ │ │ └── product_name.ts │ │ ├── company │ │ │ ├── category.ts │ │ │ ├── index.ts │ │ │ ├── legal_entity_type.ts │ │ │ └── name_pattern.ts │ │ ├── database │ │ │ ├── column.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── finance │ │ │ ├── account_type.ts │ │ │ ├── credit_card │ │ │ │ ├── index.ts │ │ │ │ ├── mastercard.ts │ │ │ │ ├── unionpay.ts │ │ │ │ └── visa.ts │ │ │ ├── currency.ts │ │ │ ├── index.ts │ │ │ └── transaction_type.ts │ │ ├── food │ │ │ ├── adjective.ts │ │ │ ├── description_pattern.ts │ │ │ ├── dish.ts │ │ │ ├── dish_pattern.ts │ │ │ ├── ethnic_category.ts │ │ │ ├── fruit.ts │ │ │ ├── index.ts │ │ │ ├── ingredient.ts │ │ │ ├── meat.ts │ │ │ ├── spice.ts │ │ │ └── vegetable.ts │ │ ├── hacker │ │ │ ├── adjective.ts │ │ │ ├── index.ts │ │ │ ├── noun.ts │ │ │ ├── phrase.ts │ │ │ └── verb.ts │ │ ├── index.ts │ │ ├── internet │ │ │ ├── free_email.ts │ │ │ └── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_name.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── continent.ts │ │ │ ├── country.ts │ │ │ ├── direction.ts │ │ │ ├── index.ts │ │ │ ├── language.ts │ │ │ ├── postcode.ts │ │ │ ├── secondary_address.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_name.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── music │ │ │ ├── genre.ts │ │ │ ├── index.ts │ │ │ └── song_name.ts │ │ ├── person │ │ │ ├── bio_part.ts │ │ │ ├── bio_pattern.ts │ │ │ ├── bio_supporter.ts │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ ├── phone_number │ │ │ ├── format │ │ │ │ ├── human.ts │ │ │ │ ├── index.ts │ │ │ │ ├── international.ts │ │ │ │ └── national.ts │ │ │ └── index.ts │ │ ├── science │ │ │ ├── chemical_element.ts │ │ │ ├── index.ts │ │ │ └── unit.ts │ │ ├── vehicle │ │ │ ├── bicycle_type.ts │ │ │ ├── fuel.ts │ │ │ ├── index.ts │ │ │ ├── manufacturer.ts │ │ │ └── type.ts │ │ └── word │ │ │ ├── adjective.ts │ │ │ ├── adverb.ts │ │ │ ├── conjunction.ts │ │ │ ├── index.ts │ │ │ ├── interjection.ts │ │ │ ├── noun.ts │ │ │ ├── preposition.ts │ │ │ └── verb.ts │ ├── zh_TW │ │ ├── color │ │ │ ├── human.ts │ │ │ └── index.ts │ │ ├── date │ │ │ ├── index.ts │ │ │ ├── month.ts │ │ │ └── weekday.ts │ │ ├── index.ts │ │ ├── location │ │ │ ├── building_number.ts │ │ │ ├── city_pattern.ts │ │ │ ├── city_prefix.ts │ │ │ ├── city_suffix.ts │ │ │ ├── index.ts │ │ │ ├── postcode.ts │ │ │ ├── state.ts │ │ │ ├── state_abbr.ts │ │ │ ├── street_address.ts │ │ │ ├── street_pattern.ts │ │ │ └── street_suffix.ts │ │ ├── metadata.ts │ │ ├── person │ │ │ ├── first_name.ts │ │ │ ├── index.ts │ │ │ ├── last_name.ts │ │ │ ├── last_name_pattern.ts │ │ │ ├── name.ts │ │ │ ├── prefix.ts │ │ │ └── sex.ts │ │ └── phone_number │ │ │ ├── format │ │ │ ├── human.ts │ │ │ ├── index.ts │ │ │ ├── international.ts │ │ │ └── national.ts │ │ │ └── index.ts │ └── zu_ZA │ │ ├── cell_phone │ │ ├── formats.ts │ │ └── index.ts │ │ ├── company │ │ ├── index.ts │ │ └── legal_entity_type.ts │ │ ├── index.ts │ │ ├── internet │ │ ├── domain_suffix.ts │ │ └── index.ts │ │ ├── location │ │ ├── city_name.ts │ │ ├── city_pattern.ts │ │ ├── index.ts │ │ ├── postcode.ts │ │ ├── state.ts │ │ └── street_pattern.ts │ │ ├── metadata.ts │ │ ├── person │ │ ├── first_name.ts │ │ ├── index.ts │ │ ├── last_name.ts │ │ └── last_name_pattern.ts │ │ └── phone_number │ │ ├── format │ │ ├── human.ts │ │ ├── index.ts │ │ ├── international.ts │ │ └── national.ts │ │ └── index.ts ├── modules │ ├── airline │ │ └── index.ts │ ├── animal │ │ └── index.ts │ ├── book │ │ └── index.ts │ ├── color │ │ └── index.ts │ ├── commerce │ │ ├── index.ts │ │ └── upc-check-digit.ts │ ├── company │ │ └── index.ts │ ├── database │ │ └── index.ts │ ├── datatype │ │ └── index.ts │ ├── date │ │ └── index.ts │ ├── finance │ │ ├── bitcoin.ts │ │ ├── iban.ts │ │ └── index.ts │ ├── food │ │ └── index.ts │ ├── git │ │ └── index.ts │ ├── hacker │ │ └── index.ts │ ├── helpers │ │ ├── eval.ts │ │ ├── index.ts │ │ └── luhn-check.ts │ ├── image │ │ └── index.ts │ ├── internet │ │ ├── char-mappings.ts │ │ └── index.ts │ ├── location │ │ └── index.ts │ ├── lorem │ │ └── index.ts │ ├── music │ │ └── index.ts │ ├── number │ │ └── index.ts │ ├── person │ │ └── index.ts │ ├── phone │ │ └── index.ts │ ├── science │ │ └── index.ts │ ├── string │ │ └── index.ts │ ├── system │ │ └── index.ts │ ├── vehicle │ │ └── index.ts │ └── word │ │ ├── filter-word-list-by-length.ts │ │ └── index.ts ├── randomizer.ts ├── simple-faker.ts └── utils │ ├── merge-locales.ts │ └── mersenne.ts ├── test ├── __snapshots__ │ └── locale-data.spec.ts.snap ├── all-functional.spec.ts ├── docs │ ├── __snapshots__ │ │ └── format.spec.ts.snap │ ├── format.spec.ts │ └── versions.spec.ts ├── faker.spec.ts ├── integration │ └── modules │ │ └── image.spec.ts ├── internal │ ├── __snapshots__ │ │ └── base32.spec.ts.snap │ ├── base32.spec.ts │ ├── base64.spec.ts │ ├── bind-this-to-member-functions.spec.ts │ ├── date.spec.ts │ ├── group-by.spec.ts │ ├── locale-proxy.spec.ts │ └── seed.spec.ts ├── locale-data.spec.ts ├── locale-imports.spec.ts ├── modules │ ├── __snapshots__ │ │ ├── airline.spec.ts.snap │ │ ├── animal.spec.ts.snap │ │ ├── book.spec.ts.snap │ │ ├── color.spec.ts.snap │ │ ├── commerce.spec.ts.snap │ │ ├── company.spec.ts.snap │ │ ├── database.spec.ts.snap │ │ ├── datatype.spec.ts.snap │ │ ├── date.spec.ts.snap │ │ ├── finance.spec.ts.snap │ │ ├── food.spec.ts.snap │ │ ├── git.spec.ts.snap │ │ ├── hacker.spec.ts.snap │ │ ├── helpers.spec.ts.snap │ │ ├── image.spec.ts.snap │ │ ├── internet.spec.ts.snap │ │ ├── location.spec.ts.snap │ │ ├── lorem.spec.ts.snap │ │ ├── music.spec.ts.snap │ │ ├── number.spec.ts.snap │ │ ├── person.spec.ts.snap │ │ ├── phone.spec.ts.snap │ │ ├── random.spec.ts.snap │ │ ├── science.spec.ts.snap │ │ ├── string.spec.ts.snap │ │ ├── system.spec.ts.snap │ │ ├── vehicle.spec.ts.snap │ │ └── word.spec.ts.snap │ ├── airline.spec.ts │ ├── animal.spec.ts │ ├── book.spec.ts │ ├── color.spec.ts │ ├── commerce.spec.ts │ ├── company.spec.ts │ ├── database.spec.ts │ ├── datatype.spec.ts │ ├── date.spec.ts │ ├── finance-iban.spec.ts │ ├── finance.spec.ts │ ├── food.spec.ts │ ├── git.spec.ts │ ├── hacker.spec.ts │ ├── helpers-eval.spec.ts │ ├── helpers.spec-d.ts │ ├── helpers.spec.ts │ ├── image.spec.ts │ ├── internet.spec.ts │ ├── location.spec.ts │ ├── lorem.spec.ts │ ├── music.spec.ts │ ├── number.spec.ts │ ├── person.spec.ts │ ├── phone.spec.ts │ ├── science.spec.ts │ ├── string.spec.ts │ ├── system.spec.ts │ ├── vehicle.spec.ts │ └── word.spec.ts ├── require.spec.cts ├── scripts │ └── apidocs │ │ ├── .gitignore │ │ ├── __snapshots__ │ │ ├── class.spec.ts.snap │ │ ├── method.spec.ts.snap │ │ ├── page.spec.ts.snap │ │ └── verify-jsdoc-tags.spec.ts.snap │ │ ├── class.example.ts │ │ ├── class.spec.ts │ │ ├── method.example.ts │ │ ├── method.spec.ts │ │ ├── page.spec.ts │ │ ├── utils.ts │ │ └── verify-jsdoc-tags.spec.ts ├── setup.ts ├── simple-faker.spec.ts ├── support │ ├── seeded-runs.ts │ └── times.ts ├── utils │ ├── __snapshots__ │ │ └── mersenne.spec.ts.snap │ ├── merge-locales.spec.ts │ ├── mersenne-test-utils.ts │ └── mersenne.spec.ts └── vitest-extensions.ts ├── tsconfig.json ├── tsup.config.ts ├── vitest.config.ts └── vitest.it-config.ts /.devcontainer/devcontainer.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.devcontainer/devcontainer.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- 1 | * text eol=lf 2 | *.png binary 3 | -------------------------------------------------------------------------------- /.github/.codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/.codecov.yml -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/CODEOWNERS -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/commit-convention.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/commit-convention.md -------------------------------------------------------------------------------- /.github/renovate.json5: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/renovate.json5 -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.github/workflows/pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.github/workflows/pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | lts/jod 2 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc.d.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.prettierrc.d.ts -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.versionrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.versionrc.json -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /BACKERS.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/BACKERS.md -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/README.md -------------------------------------------------------------------------------- /cypress.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/cypress.config.ts -------------------------------------------------------------------------------- /cypress/e2e/api.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/cypress/e2e/api.cy.ts -------------------------------------------------------------------------------- /cypress/e2e/guide.cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/cypress/e2e/guide.cy.ts -------------------------------------------------------------------------------- /cypress/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/cypress/tsconfig.json -------------------------------------------------------------------------------- /docs/.vitepress/api-pages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/.vitepress/api-pages.ts -------------------------------------------------------------------------------- /docs/.vitepress/config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/.vitepress/config.ts -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/.vitepress/theme/index.css -------------------------------------------------------------------------------- /docs/.vitepress/theme/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/.vitepress/theme/index.ts -------------------------------------------------------------------------------- /docs/.vitepress/versions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/.vitepress/versions.ts -------------------------------------------------------------------------------- /docs/about/announcements.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/announcements.md -------------------------------------------------------------------------------- /docs/about/roadmap/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/roadmap/index.md -------------------------------------------------------------------------------- /docs/about/roadmap/v6.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/roadmap/v6.md -------------------------------------------------------------------------------- /docs/about/roadmap/v7.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/roadmap/v7.md -------------------------------------------------------------------------------- /docs/about/roadmap/v8.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/roadmap/v8.md -------------------------------------------------------------------------------- /docs/about/roadmap/v9.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/roadmap/v9.md -------------------------------------------------------------------------------- /docs/about/team.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/team.md -------------------------------------------------------------------------------- /docs/about/team/TeamPage.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/team/TeamPage.vue -------------------------------------------------------------------------------- /docs/about/team/members.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/about/team/members.json -------------------------------------------------------------------------------- /docs/api/ApiIndex.vue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/api/ApiIndex.vue -------------------------------------------------------------------------------- /docs/api/api-types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/api/api-types.ts -------------------------------------------------------------------------------- /docs/api/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/api/index.md -------------------------------------------------------------------------------- /docs/guide/frameworks.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/frameworks.md -------------------------------------------------------------------------------- /docs/guide/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/index.md -------------------------------------------------------------------------------- /docs/guide/localization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/localization.md -------------------------------------------------------------------------------- /docs/guide/randomizer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/randomizer.md -------------------------------------------------------------------------------- /docs/guide/unique.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/unique.md -------------------------------------------------------------------------------- /docs/guide/upgrading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/upgrading.md -------------------------------------------------------------------------------- /docs/guide/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/guide/usage.md -------------------------------------------------------------------------------- /docs/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/index.md -------------------------------------------------------------------------------- /docs/public/first-week-wins.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/public/first-week-wins.png -------------------------------------------------------------------------------- /docs/public/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/public/logo.svg -------------------------------------------------------------------------------- /docs/public/social-image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/docs/public/social-image.png -------------------------------------------------------------------------------- /eslint.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/eslint.config.ts -------------------------------------------------------------------------------- /netlify.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/netlify.toml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /scripts/apidocs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs.ts -------------------------------------------------------------------------------- /scripts/apidocs/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs/diff.ts -------------------------------------------------------------------------------- /scripts/apidocs/generate.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs/generate.ts -------------------------------------------------------------------------------- /scripts/apidocs/output/constants.ts: -------------------------------------------------------------------------------- 1 | export const SCRIPT_COMMAND = 'pnpm run generate:api-docs'; 2 | -------------------------------------------------------------------------------- /scripts/apidocs/output/page.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs/output/page.ts -------------------------------------------------------------------------------- /scripts/apidocs/project.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs/project.ts -------------------------------------------------------------------------------- /scripts/apidocs/utils/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs/utils/format.ts -------------------------------------------------------------------------------- /scripts/apidocs/utils/paths.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/apidocs/utils/paths.ts -------------------------------------------------------------------------------- /scripts/diff.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/diff.ts -------------------------------------------------------------------------------- /scripts/env.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/env.ts -------------------------------------------------------------------------------- /scripts/generate-locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/scripts/generate-locales.ts -------------------------------------------------------------------------------- /src/definitions/airline.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/airline.ts -------------------------------------------------------------------------------- /src/definitions/animal.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/animal.ts -------------------------------------------------------------------------------- /src/definitions/book.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/book.ts -------------------------------------------------------------------------------- /src/definitions/color.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/color.ts -------------------------------------------------------------------------------- /src/definitions/commerce.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/commerce.ts -------------------------------------------------------------------------------- /src/definitions/company.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/company.ts -------------------------------------------------------------------------------- /src/definitions/database.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/database.ts -------------------------------------------------------------------------------- /src/definitions/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/date.ts -------------------------------------------------------------------------------- /src/definitions/definitions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/definitions.ts -------------------------------------------------------------------------------- /src/definitions/finance.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/finance.ts -------------------------------------------------------------------------------- /src/definitions/food.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/food.ts -------------------------------------------------------------------------------- /src/definitions/hacker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/hacker.ts -------------------------------------------------------------------------------- /src/definitions/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/index.ts -------------------------------------------------------------------------------- /src/definitions/internet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/internet.ts -------------------------------------------------------------------------------- /src/definitions/location.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/location.ts -------------------------------------------------------------------------------- /src/definitions/lorem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/lorem.ts -------------------------------------------------------------------------------- /src/definitions/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/metadata.ts -------------------------------------------------------------------------------- /src/definitions/music.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/music.ts -------------------------------------------------------------------------------- /src/definitions/person.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/person.ts -------------------------------------------------------------------------------- /src/definitions/phone_number.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/phone_number.ts -------------------------------------------------------------------------------- /src/definitions/science.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/science.ts -------------------------------------------------------------------------------- /src/definitions/system.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/system.ts -------------------------------------------------------------------------------- /src/definitions/vehicle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/vehicle.ts -------------------------------------------------------------------------------- /src/definitions/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/definitions/word.ts -------------------------------------------------------------------------------- /src/errors/faker-error.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/errors/faker-error.ts -------------------------------------------------------------------------------- /src/faker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/faker.ts -------------------------------------------------------------------------------- /src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/index.ts -------------------------------------------------------------------------------- /src/internal/base32.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/base32.ts -------------------------------------------------------------------------------- /src/internal/base64.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/base64.ts -------------------------------------------------------------------------------- /src/internal/date.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/date.ts -------------------------------------------------------------------------------- /src/internal/deprecated.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/deprecated.ts -------------------------------------------------------------------------------- /src/internal/group-by.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/group-by.ts -------------------------------------------------------------------------------- /src/internal/keys.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/keys.ts -------------------------------------------------------------------------------- /src/internal/locale-proxy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/locale-proxy.ts -------------------------------------------------------------------------------- /src/internal/mersenne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/mersenne.ts -------------------------------------------------------------------------------- /src/internal/module-base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/module-base.ts -------------------------------------------------------------------------------- /src/internal/seed.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/seed.ts -------------------------------------------------------------------------------- /src/internal/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/internal/types.ts -------------------------------------------------------------------------------- /src/locale/af_ZA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/af_ZA.ts -------------------------------------------------------------------------------- /src/locale/ar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ar.ts -------------------------------------------------------------------------------- /src/locale/az.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/az.ts -------------------------------------------------------------------------------- /src/locale/base.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/base.ts -------------------------------------------------------------------------------- /src/locale/bn_BD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/bn_BD.ts -------------------------------------------------------------------------------- /src/locale/cs_CZ.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/cs_CZ.ts -------------------------------------------------------------------------------- /src/locale/cy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/cy.ts -------------------------------------------------------------------------------- /src/locale/da.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/da.ts -------------------------------------------------------------------------------- /src/locale/de.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/de.ts -------------------------------------------------------------------------------- /src/locale/de_AT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/de_AT.ts -------------------------------------------------------------------------------- /src/locale/de_CH.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/de_CH.ts -------------------------------------------------------------------------------- /src/locale/dv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/dv.ts -------------------------------------------------------------------------------- /src/locale/el.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/el.ts -------------------------------------------------------------------------------- /src/locale/en.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en.ts -------------------------------------------------------------------------------- /src/locale/en_AU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_AU.ts -------------------------------------------------------------------------------- /src/locale/en_AU_ocker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_AU_ocker.ts -------------------------------------------------------------------------------- /src/locale/en_BORK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_BORK.ts -------------------------------------------------------------------------------- /src/locale/en_CA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_CA.ts -------------------------------------------------------------------------------- /src/locale/en_GB.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_GB.ts -------------------------------------------------------------------------------- /src/locale/en_GH.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_GH.ts -------------------------------------------------------------------------------- /src/locale/en_HK.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_HK.ts -------------------------------------------------------------------------------- /src/locale/en_IE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_IE.ts -------------------------------------------------------------------------------- /src/locale/en_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_IN.ts -------------------------------------------------------------------------------- /src/locale/en_NG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_NG.ts -------------------------------------------------------------------------------- /src/locale/en_US.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_US.ts -------------------------------------------------------------------------------- /src/locale/en_ZA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/en_ZA.ts -------------------------------------------------------------------------------- /src/locale/eo.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/eo.ts -------------------------------------------------------------------------------- /src/locale/es.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/es.ts -------------------------------------------------------------------------------- /src/locale/es_MX.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/es_MX.ts -------------------------------------------------------------------------------- /src/locale/fa.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fa.ts -------------------------------------------------------------------------------- /src/locale/fi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fi.ts -------------------------------------------------------------------------------- /src/locale/fr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fr.ts -------------------------------------------------------------------------------- /src/locale/fr_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fr_BE.ts -------------------------------------------------------------------------------- /src/locale/fr_CA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fr_CA.ts -------------------------------------------------------------------------------- /src/locale/fr_CH.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fr_CH.ts -------------------------------------------------------------------------------- /src/locale/fr_LU.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fr_LU.ts -------------------------------------------------------------------------------- /src/locale/fr_SN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/fr_SN.ts -------------------------------------------------------------------------------- /src/locale/he.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/he.ts -------------------------------------------------------------------------------- /src/locale/hr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/hr.ts -------------------------------------------------------------------------------- /src/locale/hu.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/hu.ts -------------------------------------------------------------------------------- /src/locale/hy.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/hy.ts -------------------------------------------------------------------------------- /src/locale/id_ID.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/id_ID.ts -------------------------------------------------------------------------------- /src/locale/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/index.ts -------------------------------------------------------------------------------- /src/locale/it.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/it.ts -------------------------------------------------------------------------------- /src/locale/ja.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ja.ts -------------------------------------------------------------------------------- /src/locale/ka_GE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ka_GE.ts -------------------------------------------------------------------------------- /src/locale/ko.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ko.ts -------------------------------------------------------------------------------- /src/locale/ku_ckb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ku_ckb.ts -------------------------------------------------------------------------------- /src/locale/ku_kmr_latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ku_kmr_latin.ts -------------------------------------------------------------------------------- /src/locale/lv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/lv.ts -------------------------------------------------------------------------------- /src/locale/mk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/mk.ts -------------------------------------------------------------------------------- /src/locale/nb_NO.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/nb_NO.ts -------------------------------------------------------------------------------- /src/locale/ne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ne.ts -------------------------------------------------------------------------------- /src/locale/nl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/nl.ts -------------------------------------------------------------------------------- /src/locale/nl_BE.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/nl_BE.ts -------------------------------------------------------------------------------- /src/locale/pl.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/pl.ts -------------------------------------------------------------------------------- /src/locale/pt_BR.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/pt_BR.ts -------------------------------------------------------------------------------- /src/locale/pt_PT.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/pt_PT.ts -------------------------------------------------------------------------------- /src/locale/ro.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ro.ts -------------------------------------------------------------------------------- /src/locale/ro_MD.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ro_MD.ts -------------------------------------------------------------------------------- /src/locale/ru.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ru.ts -------------------------------------------------------------------------------- /src/locale/sk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/sk.ts -------------------------------------------------------------------------------- /src/locale/sl_SI.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/sl_SI.ts -------------------------------------------------------------------------------- /src/locale/sr_RS_latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/sr_RS_latin.ts -------------------------------------------------------------------------------- /src/locale/sv.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/sv.ts -------------------------------------------------------------------------------- /src/locale/ta_IN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ta_IN.ts -------------------------------------------------------------------------------- /src/locale/th.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/th.ts -------------------------------------------------------------------------------- /src/locale/tr.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/tr.ts -------------------------------------------------------------------------------- /src/locale/uk.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/uk.ts -------------------------------------------------------------------------------- /src/locale/ur.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/ur.ts -------------------------------------------------------------------------------- /src/locale/uz_UZ_latin.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/uz_UZ_latin.ts -------------------------------------------------------------------------------- /src/locale/vi.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/vi.ts -------------------------------------------------------------------------------- /src/locale/yo_NG.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/yo_NG.ts -------------------------------------------------------------------------------- /src/locale/zh_CN.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/zh_CN.ts -------------------------------------------------------------------------------- /src/locale/zh_TW.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/zh_TW.ts -------------------------------------------------------------------------------- /src/locale/zu_ZA.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locale/zu_ZA.ts -------------------------------------------------------------------------------- /src/locales/af_ZA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/af_ZA/index.ts -------------------------------------------------------------------------------- /src/locales/af_ZA/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/af_ZA/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/af_ZA/metadata.ts -------------------------------------------------------------------------------- /src/locales/ar/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/color/human.ts -------------------------------------------------------------------------------- /src/locales/ar/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/color/index.ts -------------------------------------------------------------------------------- /src/locales/ar/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/date/index.ts -------------------------------------------------------------------------------- /src/locales/ar/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/date/month.ts -------------------------------------------------------------------------------- /src/locales/ar/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/ar/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/index.ts -------------------------------------------------------------------------------- /src/locales/ar/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/ar/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/ar/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/ar/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/metadata.ts -------------------------------------------------------------------------------- /src/locales/ar/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/person/index.ts -------------------------------------------------------------------------------- /src/locales/ar/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/person/name.ts -------------------------------------------------------------------------------- /src/locales/ar/person/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/person/prefix.ts -------------------------------------------------------------------------------- /src/locales/ar/person/suffix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/person/suffix.ts -------------------------------------------------------------------------------- /src/locales/ar/team/creature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/team/creature.ts -------------------------------------------------------------------------------- /src/locales/ar/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/team/index.ts -------------------------------------------------------------------------------- /src/locales/ar/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.state}} {{team.creature}}']; 2 | -------------------------------------------------------------------------------- /src/locales/ar/vehicle/fuel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/vehicle/fuel.ts -------------------------------------------------------------------------------- /src/locales/ar/vehicle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/vehicle/index.ts -------------------------------------------------------------------------------- /src/locales/ar/vehicle/model.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/vehicle/model.ts -------------------------------------------------------------------------------- /src/locales/ar/vehicle/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ar/vehicle/type.ts -------------------------------------------------------------------------------- /src/locales/az/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/color/human.ts -------------------------------------------------------------------------------- /src/locales/az/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/color/index.ts -------------------------------------------------------------------------------- /src/locales/az/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/company/index.ts -------------------------------------------------------------------------------- /src/locales/az/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/date/index.ts -------------------------------------------------------------------------------- /src/locales/az/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/date/month.ts -------------------------------------------------------------------------------- /src/locales/az/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/az/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/index.ts -------------------------------------------------------------------------------- /src/locales/az/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['###']; 2 | -------------------------------------------------------------------------------- /src/locales/az/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/az/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['AZ####']; 2 | -------------------------------------------------------------------------------- /src/locales/az/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['m. ###']; 2 | -------------------------------------------------------------------------------- /src/locales/az/location/state.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/az/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/metadata.ts -------------------------------------------------------------------------------- /src/locales/az/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/person/index.ts -------------------------------------------------------------------------------- /src/locales/az/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/az/person/name.ts -------------------------------------------------------------------------------- /src/locales/az/person/prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/az/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/base/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/base/color/index.ts -------------------------------------------------------------------------------- /src/locales/base/color/space.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/base/color/space.ts -------------------------------------------------------------------------------- /src/locales/base/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/base/date/index.ts -------------------------------------------------------------------------------- /src/locales/base/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/base/index.ts -------------------------------------------------------------------------------- /src/locales/base/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/base/metadata.ts -------------------------------------------------------------------------------- /src/locales/bn_BD/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/bn_BD/date/index.ts -------------------------------------------------------------------------------- /src/locales/bn_BD/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/bn_BD/date/month.ts -------------------------------------------------------------------------------- /src/locales/bn_BD/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/bn_BD/index.ts -------------------------------------------------------------------------------- /src/locales/bn_BD/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/bn_BD/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/bn_BD/metadata.ts -------------------------------------------------------------------------------- /src/locales/cs_CZ/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cs_CZ/date/index.ts -------------------------------------------------------------------------------- /src/locales/cs_CZ/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cs_CZ/date/month.ts -------------------------------------------------------------------------------- /src/locales/cs_CZ/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cs_CZ/index.ts -------------------------------------------------------------------------------- /src/locales/cs_CZ/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/cs_CZ/location/state_abbr.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/cs_CZ/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/cs_CZ/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cs_CZ/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/cs_CZ/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cs_CZ/metadata.ts -------------------------------------------------------------------------------- /src/locales/cs_CZ/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['Phd.']; 2 | -------------------------------------------------------------------------------- /src/locales/cy/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cy/date/index.ts -------------------------------------------------------------------------------- /src/locales/cy/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cy/date/month.ts -------------------------------------------------------------------------------- /src/locales/cy/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cy/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/cy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cy/index.ts -------------------------------------------------------------------------------- /src/locales/cy/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/cy/metadata.ts -------------------------------------------------------------------------------- /src/locales/da/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/company/index.ts -------------------------------------------------------------------------------- /src/locales/da/company/legal_entity_type.ts: -------------------------------------------------------------------------------- 1 | export default ['A/S', 'ApS']; 2 | -------------------------------------------------------------------------------- /src/locales/da/company/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/company/noun.ts -------------------------------------------------------------------------------- /src/locales/da/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/date/index.ts -------------------------------------------------------------------------------- /src/locales/da/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/date/month.ts -------------------------------------------------------------------------------- /src/locales/da/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/da/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/index.ts -------------------------------------------------------------------------------- /src/locales/da/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/da/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/da/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/da/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/metadata.ts -------------------------------------------------------------------------------- /src/locales/da/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/person/index.ts -------------------------------------------------------------------------------- /src/locales/da/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/person/name.ts -------------------------------------------------------------------------------- /src/locales/da/person/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/person/prefix.ts -------------------------------------------------------------------------------- /src/locales/da/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['mand', 'kvinde']; 2 | -------------------------------------------------------------------------------- /src/locales/da/word/adverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/word/adverb.ts -------------------------------------------------------------------------------- /src/locales/da/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/word/index.ts -------------------------------------------------------------------------------- /src/locales/da/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/word/noun.ts -------------------------------------------------------------------------------- /src/locales/da/word/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/da/word/verb.ts -------------------------------------------------------------------------------- /src/locales/de/animal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/animal/index.ts -------------------------------------------------------------------------------- /src/locales/de/animal/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/animal/type.ts -------------------------------------------------------------------------------- /src/locales/de/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/color/human.ts -------------------------------------------------------------------------------- /src/locales/de/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/color/index.ts -------------------------------------------------------------------------------- /src/locales/de/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/company/index.ts -------------------------------------------------------------------------------- /src/locales/de/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/date/index.ts -------------------------------------------------------------------------------- /src/locales/de/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/date/month.ts -------------------------------------------------------------------------------- /src/locales/de/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/de/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/index.ts -------------------------------------------------------------------------------- /src/locales/de/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/de/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/de/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/de/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/metadata.ts -------------------------------------------------------------------------------- /src/locales/de/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/person/index.ts -------------------------------------------------------------------------------- /src/locales/de/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/person/name.ts -------------------------------------------------------------------------------- /src/locales/de/person/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/person/prefix.ts -------------------------------------------------------------------------------- /src/locales/de/person/sex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/person/sex.ts -------------------------------------------------------------------------------- /src/locales/de/word/adverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/word/adverb.ts -------------------------------------------------------------------------------- /src/locales/de/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/word/index.ts -------------------------------------------------------------------------------- /src/locales/de/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/word/noun.ts -------------------------------------------------------------------------------- /src/locales/de/word/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de/word/verb.ts -------------------------------------------------------------------------------- /src/locales/de_AT/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de_AT/index.ts -------------------------------------------------------------------------------- /src/locales/de_AT/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/de_AT/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/de_AT/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/de_AT/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de_AT/metadata.ts -------------------------------------------------------------------------------- /src/locales/de_AT/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de_AT/word/index.ts -------------------------------------------------------------------------------- /src/locales/de_CH/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de_CH/index.ts -------------------------------------------------------------------------------- /src/locales/de_CH/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/de_CH/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/de_CH/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/de_CH/metadata.ts -------------------------------------------------------------------------------- /src/locales/dv/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/color/human.ts -------------------------------------------------------------------------------- /src/locales/dv/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/color/index.ts -------------------------------------------------------------------------------- /src/locales/dv/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/company/index.ts -------------------------------------------------------------------------------- /src/locales/dv/company/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/company/noun.ts -------------------------------------------------------------------------------- /src/locales/dv/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/date/index.ts -------------------------------------------------------------------------------- /src/locales/dv/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/date/month.ts -------------------------------------------------------------------------------- /src/locales/dv/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/dv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/index.ts -------------------------------------------------------------------------------- /src/locales/dv/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/dv/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/dv/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/metadata.ts -------------------------------------------------------------------------------- /src/locales/dv/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/person/index.ts -------------------------------------------------------------------------------- /src/locales/dv/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/person/name.ts -------------------------------------------------------------------------------- /src/locales/dv/person/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/person/prefix.ts -------------------------------------------------------------------------------- /src/locales/dv/person/sex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/dv/person/sex.ts -------------------------------------------------------------------------------- /src/locales/el/app/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/app/author.ts -------------------------------------------------------------------------------- /src/locales/el/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/app/index.ts -------------------------------------------------------------------------------- /src/locales/el/app/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/app/name.ts -------------------------------------------------------------------------------- /src/locales/el/app/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/app/version.ts -------------------------------------------------------------------------------- /src/locales/el/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/color/human.ts -------------------------------------------------------------------------------- /src/locales/el/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/color/index.ts -------------------------------------------------------------------------------- /src/locales/el/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/company/index.ts -------------------------------------------------------------------------------- /src/locales/el/company/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/company/noun.ts -------------------------------------------------------------------------------- /src/locales/el/finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/finance/index.ts -------------------------------------------------------------------------------- /src/locales/el/hacker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/hacker/index.ts -------------------------------------------------------------------------------- /src/locales/el/hacker/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/hacker/noun.ts -------------------------------------------------------------------------------- /src/locales/el/hacker/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/hacker/verb.ts -------------------------------------------------------------------------------- /src/locales/el/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/index.ts -------------------------------------------------------------------------------- /src/locales/el/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/el/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/el/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/el/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/metadata.ts -------------------------------------------------------------------------------- /src/locales/el/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/person/index.ts -------------------------------------------------------------------------------- /src/locales/el/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/person/name.ts -------------------------------------------------------------------------------- /src/locales/el/person/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/person/prefix.ts -------------------------------------------------------------------------------- /src/locales/el/team/creature.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/team/creature.ts -------------------------------------------------------------------------------- /src/locales/el/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/el/team/index.ts -------------------------------------------------------------------------------- /src/locales/el/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.state}} {{team.creature}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en/airline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/airline/index.ts -------------------------------------------------------------------------------- /src/locales/en/animal/bear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/bear.ts -------------------------------------------------------------------------------- /src/locales/en/animal/bird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/bird.ts -------------------------------------------------------------------------------- /src/locales/en/animal/cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/cat.ts -------------------------------------------------------------------------------- /src/locales/en/animal/cow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/cow.ts -------------------------------------------------------------------------------- /src/locales/en/animal/dog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/dog.ts -------------------------------------------------------------------------------- /src/locales/en/animal/fish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/fish.ts -------------------------------------------------------------------------------- /src/locales/en/animal/horse.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/horse.ts -------------------------------------------------------------------------------- /src/locales/en/animal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/index.ts -------------------------------------------------------------------------------- /src/locales/en/animal/insect.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/insect.ts -------------------------------------------------------------------------------- /src/locales/en/animal/lion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/lion.ts -------------------------------------------------------------------------------- /src/locales/en/animal/rabbit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/rabbit.ts -------------------------------------------------------------------------------- /src/locales/en/animal/rodent.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/rodent.ts -------------------------------------------------------------------------------- /src/locales/en/animal/snake.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/snake.ts -------------------------------------------------------------------------------- /src/locales/en/animal/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/animal/type.ts -------------------------------------------------------------------------------- /src/locales/en/app/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/app/author.ts -------------------------------------------------------------------------------- /src/locales/en/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/app/index.ts -------------------------------------------------------------------------------- /src/locales/en/app/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/app/name.ts -------------------------------------------------------------------------------- /src/locales/en/app/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/app/version.ts -------------------------------------------------------------------------------- /src/locales/en/book/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/book/author.ts -------------------------------------------------------------------------------- /src/locales/en/book/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/book/format.ts -------------------------------------------------------------------------------- /src/locales/en/book/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/book/genre.ts -------------------------------------------------------------------------------- /src/locales/en/book/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/book/index.ts -------------------------------------------------------------------------------- /src/locales/en/book/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/book/series.ts -------------------------------------------------------------------------------- /src/locales/en/book/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/book/title.ts -------------------------------------------------------------------------------- /src/locales/en/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/color/human.ts -------------------------------------------------------------------------------- /src/locales/en/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/color/index.ts -------------------------------------------------------------------------------- /src/locales/en/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/company/index.ts -------------------------------------------------------------------------------- /src/locales/en/company/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/company/noun.ts -------------------------------------------------------------------------------- /src/locales/en/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/date/index.ts -------------------------------------------------------------------------------- /src/locales/en/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/date/month.ts -------------------------------------------------------------------------------- /src/locales/en/date/weekday.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/date/weekday.ts -------------------------------------------------------------------------------- /src/locales/en/finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/finance/index.ts -------------------------------------------------------------------------------- /src/locales/en/food/dish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/food/dish.ts -------------------------------------------------------------------------------- /src/locales/en/food/fruit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/food/fruit.ts -------------------------------------------------------------------------------- /src/locales/en/food/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/food/index.ts -------------------------------------------------------------------------------- /src/locales/en/food/meat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/food/meat.ts -------------------------------------------------------------------------------- /src/locales/en/food/spice.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/food/spice.ts -------------------------------------------------------------------------------- /src/locales/en/hacker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/hacker/index.ts -------------------------------------------------------------------------------- /src/locales/en/hacker/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/hacker/noun.ts -------------------------------------------------------------------------------- /src/locales/en/hacker/phrase.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/hacker/phrase.ts -------------------------------------------------------------------------------- /src/locales/en/hacker/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/hacker/verb.ts -------------------------------------------------------------------------------- /src/locales/en/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/index.ts -------------------------------------------------------------------------------- /src/locales/en/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/en/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/en/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/metadata.ts -------------------------------------------------------------------------------- /src/locales/en/music/album.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/music/album.ts -------------------------------------------------------------------------------- /src/locales/en/music/artist.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/music/artist.ts -------------------------------------------------------------------------------- /src/locales/en/music/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/music/genre.ts -------------------------------------------------------------------------------- /src/locales/en/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/music/index.ts -------------------------------------------------------------------------------- /src/locales/en/person/gender.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/person/gender.ts -------------------------------------------------------------------------------- /src/locales/en/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/person/index.ts -------------------------------------------------------------------------------- /src/locales/en/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/person/name.ts -------------------------------------------------------------------------------- /src/locales/en/person/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/person/prefix.ts -------------------------------------------------------------------------------- /src/locales/en/person/sex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/person/sex.ts -------------------------------------------------------------------------------- /src/locales/en/person/suffix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/person/suffix.ts -------------------------------------------------------------------------------- /src/locales/en/science/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/science/index.ts -------------------------------------------------------------------------------- /src/locales/en/science/unit.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/science/unit.ts -------------------------------------------------------------------------------- /src/locales/en/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/team/index.ts -------------------------------------------------------------------------------- /src/locales/en/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.state}} {{team.creature}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en/word/adverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/word/adverb.ts -------------------------------------------------------------------------------- /src/locales/en/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/word/index.ts -------------------------------------------------------------------------------- /src/locales/en/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/word/noun.ts -------------------------------------------------------------------------------- /src/locales/en/word/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en/word/verb.ts -------------------------------------------------------------------------------- /src/locales/en_AU/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_AU/index.ts -------------------------------------------------------------------------------- /src/locales/en_AU/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/en_AU/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_AU/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_AU_ocker/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_AU_ocker/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_BORK/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_BORK/index.ts -------------------------------------------------------------------------------- /src/locales/en_CA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_CA/index.ts -------------------------------------------------------------------------------- /src/locales/en_CA/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_CA/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_GB/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_GB/index.ts -------------------------------------------------------------------------------- /src/locales/en_GB/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_GB/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_GH/company/legal_entity_type.ts: -------------------------------------------------------------------------------- 1 | export default ['Ltd', 'Venture']; 2 | -------------------------------------------------------------------------------- /src/locales/en_GH/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_GH/index.ts -------------------------------------------------------------------------------- /src/locales/en_GH/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_GH/location/street_prefix.ts: -------------------------------------------------------------------------------- 1 | export default ['Boame']; 2 | -------------------------------------------------------------------------------- /src/locales/en_GH/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_GH/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_HK/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_HK/index.ts -------------------------------------------------------------------------------- /src/locales/en_HK/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_HK/location/street_prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/en_HK/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_HK/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_IE/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_IE/index.ts -------------------------------------------------------------------------------- /src/locales/en_IE/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_IE/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_IN/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_IN/index.ts -------------------------------------------------------------------------------- /src/locales/en_IN/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_IN/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['### ###']; 2 | -------------------------------------------------------------------------------- /src/locales/en_IN/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_IN/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_NG/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_NG/index.ts -------------------------------------------------------------------------------- /src/locales/en_NG/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_NG/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_NG/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_US/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_US/index.ts -------------------------------------------------------------------------------- /src/locales/en_US/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_US/metadata.ts -------------------------------------------------------------------------------- /src/locales/en_ZA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_ZA/index.ts -------------------------------------------------------------------------------- /src/locales/en_ZA/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/en_ZA/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/en_ZA/metadata.ts -------------------------------------------------------------------------------- /src/locales/eo/animal/bear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/animal/bear.ts -------------------------------------------------------------------------------- /src/locales/eo/animal/lion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/animal/lion.ts -------------------------------------------------------------------------------- /src/locales/eo/animal/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/animal/type.ts -------------------------------------------------------------------------------- /src/locales/eo/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/color/human.ts -------------------------------------------------------------------------------- /src/locales/eo/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/color/index.ts -------------------------------------------------------------------------------- /src/locales/eo/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/date/index.ts -------------------------------------------------------------------------------- /src/locales/eo/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/date/month.ts -------------------------------------------------------------------------------- /src/locales/eo/hacker/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/hacker/noun.ts -------------------------------------------------------------------------------- /src/locales/eo/hacker/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/hacker/verb.ts -------------------------------------------------------------------------------- /src/locales/eo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/index.ts -------------------------------------------------------------------------------- /src/locales/eo/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/metadata.ts -------------------------------------------------------------------------------- /src/locales/eo/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/eo/person/name.ts -------------------------------------------------------------------------------- /src/locales/eo/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['vira', 'ina']; 2 | -------------------------------------------------------------------------------- /src/locales/es/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/color/human.ts -------------------------------------------------------------------------------- /src/locales/es/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/color/index.ts -------------------------------------------------------------------------------- /src/locales/es/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/date/index.ts -------------------------------------------------------------------------------- /src/locales/es/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/date/month.ts -------------------------------------------------------------------------------- /src/locales/es/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/index.ts -------------------------------------------------------------------------------- /src/locales/es/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/es/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/metadata.ts -------------------------------------------------------------------------------- /src/locales/es/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es/person/name.ts -------------------------------------------------------------------------------- /src/locales/es_MX/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es_MX/index.ts -------------------------------------------------------------------------------- /src/locales/es_MX/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/es_MX/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/es_MX/metadata.ts -------------------------------------------------------------------------------- /src/locales/es_MX/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.state}} {{team.creature}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fa/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/color/human.ts -------------------------------------------------------------------------------- /src/locales/fa/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/color/index.ts -------------------------------------------------------------------------------- /src/locales/fa/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/date/index.ts -------------------------------------------------------------------------------- /src/locales/fa/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/date/month.ts -------------------------------------------------------------------------------- /src/locales/fa/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/index.ts -------------------------------------------------------------------------------- /src/locales/fa/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['##', '#']; 2 | -------------------------------------------------------------------------------- /src/locales/fa/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fa/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['واحد #', '# طبقه']; 2 | -------------------------------------------------------------------------------- /src/locales/fa/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/fa/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/fa/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/metadata.ts -------------------------------------------------------------------------------- /src/locales/fa/music/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/music/genre.ts -------------------------------------------------------------------------------- /src/locales/fa/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/music/index.ts -------------------------------------------------------------------------------- /src/locales/fa/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/person/name.ts -------------------------------------------------------------------------------- /src/locales/fa/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/word/index.ts -------------------------------------------------------------------------------- /src/locales/fa/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/word/noun.ts -------------------------------------------------------------------------------- /src/locales/fa/word/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fa/word/verb.ts -------------------------------------------------------------------------------- /src/locales/fi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fi/index.ts -------------------------------------------------------------------------------- /src/locales/fi/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fi/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fi/metadata.ts -------------------------------------------------------------------------------- /src/locales/fi/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fi/person/name.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/bear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/bear.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/bird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/bird.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/cat.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/cow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/cow.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/dog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/dog.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/fish.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/fish.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/lion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/lion.ts -------------------------------------------------------------------------------- /src/locales/fr/animal/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/animal/type.ts -------------------------------------------------------------------------------- /src/locales/fr/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/color/human.ts -------------------------------------------------------------------------------- /src/locales/fr/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/color/index.ts -------------------------------------------------------------------------------- /src/locales/fr/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/date/index.ts -------------------------------------------------------------------------------- /src/locales/fr/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/date/month.ts -------------------------------------------------------------------------------- /src/locales/fr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/index.ts -------------------------------------------------------------------------------- /src/locales/fr/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fr/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Apt. ###', '# étage']; 2 | -------------------------------------------------------------------------------- /src/locales/fr/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/fr/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/fr/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/metadata.ts -------------------------------------------------------------------------------- /src/locales/fr/music/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/music/genre.ts -------------------------------------------------------------------------------- /src/locales/fr/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/music/index.ts -------------------------------------------------------------------------------- /src/locales/fr/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/person/name.ts -------------------------------------------------------------------------------- /src/locales/fr/person/sex.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/person/sex.ts -------------------------------------------------------------------------------- /src/locales/fr/word/adverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/word/adverb.ts -------------------------------------------------------------------------------- /src/locales/fr/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/word/index.ts -------------------------------------------------------------------------------- /src/locales/fr/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/word/noun.ts -------------------------------------------------------------------------------- /src/locales/fr/word/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr/word/verb.ts -------------------------------------------------------------------------------- /src/locales/fr_BE/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_BE/index.ts -------------------------------------------------------------------------------- /src/locales/fr_BE/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_BE/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_BE/metadata.ts -------------------------------------------------------------------------------- /src/locales/fr_CA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_CA/index.ts -------------------------------------------------------------------------------- /src/locales/fr_CA/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_CA/metadata.ts -------------------------------------------------------------------------------- /src/locales/fr_CH/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_CH/index.ts -------------------------------------------------------------------------------- /src/locales/fr_CH/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_CH/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Apt. ###', '# étage']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_CH/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_CH/metadata.ts -------------------------------------------------------------------------------- /src/locales/fr_LU/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_LU/index.ts -------------------------------------------------------------------------------- /src/locales/fr_LU/internet/domain_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['lu']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_LU/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_LU/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_LU/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_LU/metadata.ts -------------------------------------------------------------------------------- /src/locales/fr_SN/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_SN/index.ts -------------------------------------------------------------------------------- /src/locales/fr_SN/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_SN/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Apt. ###', '# étage']; 2 | -------------------------------------------------------------------------------- /src/locales/fr_SN/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/fr_SN/metadata.ts -------------------------------------------------------------------------------- /src/locales/he/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/color/human.ts -------------------------------------------------------------------------------- /src/locales/he/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/color/index.ts -------------------------------------------------------------------------------- /src/locales/he/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/date/index.ts -------------------------------------------------------------------------------- /src/locales/he/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/date/month.ts -------------------------------------------------------------------------------- /src/locales/he/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/index.ts -------------------------------------------------------------------------------- /src/locales/he/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/he/location/county.ts: -------------------------------------------------------------------------------- 1 | export default ['Not relevant for Israel']; 2 | -------------------------------------------------------------------------------- /src/locales/he/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/he/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/he/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/metadata.ts -------------------------------------------------------------------------------- /src/locales/he/music/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/music/genre.ts -------------------------------------------------------------------------------- /src/locales/he/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/music/index.ts -------------------------------------------------------------------------------- /src/locales/he/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/he/person/name.ts -------------------------------------------------------------------------------- /src/locales/hr/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hr/date/index.ts -------------------------------------------------------------------------------- /src/locales/hr/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hr/date/month.ts -------------------------------------------------------------------------------- /src/locales/hr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hr/index.ts -------------------------------------------------------------------------------- /src/locales/hr/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/hr/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Kat #', 'Stan ##']; 2 | -------------------------------------------------------------------------------- /src/locales/hr/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/hr/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hr/metadata.ts -------------------------------------------------------------------------------- /src/locales/hr/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hr/person/name.ts -------------------------------------------------------------------------------- /src/locales/hu/animal/cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/animal/cat.ts -------------------------------------------------------------------------------- /src/locales/hu/animal/dog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/animal/dog.ts -------------------------------------------------------------------------------- /src/locales/hu/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/color/human.ts -------------------------------------------------------------------------------- /src/locales/hu/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/color/index.ts -------------------------------------------------------------------------------- /src/locales/hu/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/date/index.ts -------------------------------------------------------------------------------- /src/locales/hu/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/date/month.ts -------------------------------------------------------------------------------- /src/locales/hu/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/index.ts -------------------------------------------------------------------------------- /src/locales/hu/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/hu/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/hu/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/metadata.ts -------------------------------------------------------------------------------- /src/locales/hu/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/person/name.ts -------------------------------------------------------------------------------- /src/locales/hu/word/adverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/word/adverb.ts -------------------------------------------------------------------------------- /src/locales/hu/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/word/index.ts -------------------------------------------------------------------------------- /src/locales/hu/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/word/noun.ts -------------------------------------------------------------------------------- /src/locales/hu/word/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hu/word/verb.ts -------------------------------------------------------------------------------- /src/locales/hy/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/color/human.ts -------------------------------------------------------------------------------- /src/locales/hy/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/color/index.ts -------------------------------------------------------------------------------- /src/locales/hy/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/date/index.ts -------------------------------------------------------------------------------- /src/locales/hy/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/date/month.ts -------------------------------------------------------------------------------- /src/locales/hy/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/index.ts -------------------------------------------------------------------------------- /src/locales/hy/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Բն. ###', 'Տուն ###']; 2 | -------------------------------------------------------------------------------- /src/locales/hy/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/hy/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/hy/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/metadata.ts -------------------------------------------------------------------------------- /src/locales/hy/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/hy/person/name.ts -------------------------------------------------------------------------------- /src/locales/id_ID/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/id_ID/index.ts -------------------------------------------------------------------------------- /src/locales/id_ID/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['##', '#']; 2 | -------------------------------------------------------------------------------- /src/locales/id_ID/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/id_ID/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/id_ID/metadata.ts -------------------------------------------------------------------------------- /src/locales/id_ID/person/prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/index.ts -------------------------------------------------------------------------------- /src/locales/it/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/it/index.ts -------------------------------------------------------------------------------- /src/locales/it/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Appartamento ##', 'Piano #']; 2 | -------------------------------------------------------------------------------- /src/locales/it/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/it/metadata.ts -------------------------------------------------------------------------------- /src/locales/it/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/it/person/name.ts -------------------------------------------------------------------------------- /src/locales/it/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/ja/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/date/index.ts -------------------------------------------------------------------------------- /src/locales/ja/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/date/month.ts -------------------------------------------------------------------------------- /src/locales/ja/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/index.ts -------------------------------------------------------------------------------- /src/locales/ja/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['###-####']; 2 | -------------------------------------------------------------------------------- /src/locales/ja/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['{{person.last_name.generic}}###号室']; 2 | -------------------------------------------------------------------------------- /src/locales/ja/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/ja/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/ja/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/metadata.ts -------------------------------------------------------------------------------- /src/locales/ja/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ja/person/name.ts -------------------------------------------------------------------------------- /src/locales/ja/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['女性', '男性']; 2 | -------------------------------------------------------------------------------- /src/locales/ka_GE/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ka_GE/index.ts -------------------------------------------------------------------------------- /src/locales/ka_GE/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['01##']; 2 | -------------------------------------------------------------------------------- /src/locales/ka_GE/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ka_GE/metadata.ts -------------------------------------------------------------------------------- /src/locales/ko/animal/bear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/animal/bear.ts -------------------------------------------------------------------------------- /src/locales/ko/animal/bird.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/animal/bird.ts -------------------------------------------------------------------------------- /src/locales/ko/animal/cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/animal/cat.ts -------------------------------------------------------------------------------- /src/locales/ko/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/color/human.ts -------------------------------------------------------------------------------- /src/locales/ko/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/color/index.ts -------------------------------------------------------------------------------- /src/locales/ko/company/legal_entity_type.ts: -------------------------------------------------------------------------------- 1 | export default ['주식회사', '한국']; 2 | -------------------------------------------------------------------------------- /src/locales/ko/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/date/index.ts -------------------------------------------------------------------------------- /src/locales/ko/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/date/month.ts -------------------------------------------------------------------------------- /src/locales/ko/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/index.ts -------------------------------------------------------------------------------- /src/locales/ko/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['구', '시', '군']; 2 | -------------------------------------------------------------------------------- /src/locales/ko/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['아파트 ###동', '###호']; 2 | -------------------------------------------------------------------------------- /src/locales/ko/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/ko/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/ko/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/metadata.ts -------------------------------------------------------------------------------- /src/locales/ko/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/person/name.ts -------------------------------------------------------------------------------- /src/locales/ko/word/adverb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/word/adverb.ts -------------------------------------------------------------------------------- /src/locales/ko/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/word/index.ts -------------------------------------------------------------------------------- /src/locales/ko/word/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ko/word/noun.ts -------------------------------------------------------------------------------- /src/locales/ku_ckb/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ku_ckb/index.ts -------------------------------------------------------------------------------- /src/locales/ku_ckb/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['مێ', 'نێر']; 2 | -------------------------------------------------------------------------------- /src/locales/lv/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/color/human.ts -------------------------------------------------------------------------------- /src/locales/lv/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/color/index.ts -------------------------------------------------------------------------------- /src/locales/lv/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/date/index.ts -------------------------------------------------------------------------------- /src/locales/lv/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/date/month.ts -------------------------------------------------------------------------------- /src/locales/lv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/index.ts -------------------------------------------------------------------------------- /src/locales/lv/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['###', '##']; 2 | -------------------------------------------------------------------------------- /src/locales/lv/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/lv/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/lv/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/lv/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/metadata.ts -------------------------------------------------------------------------------- /src/locales/lv/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/lv/person/name.ts -------------------------------------------------------------------------------- /src/locales/mk/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/mk/date/index.ts -------------------------------------------------------------------------------- /src/locales/mk/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/mk/date/month.ts -------------------------------------------------------------------------------- /src/locales/mk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/mk/index.ts -------------------------------------------------------------------------------- /src/locales/mk/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/mk/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/mk/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['кат #', 'стан ##']; 2 | -------------------------------------------------------------------------------- /src/locales/mk/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/mk/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/mk/metadata.ts -------------------------------------------------------------------------------- /src/locales/mk/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/mk/person/name.ts -------------------------------------------------------------------------------- /src/locales/mk/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/nb_NO/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nb_NO/index.ts -------------------------------------------------------------------------------- /src/locales/nb_NO/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['#', '##']; 2 | -------------------------------------------------------------------------------- /src/locales/nb_NO/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nb_NO/metadata.ts -------------------------------------------------------------------------------- /src/locales/ne/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ne/index.ts -------------------------------------------------------------------------------- /src/locales/ne/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/ne/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ne/metadata.ts -------------------------------------------------------------------------------- /src/locales/nl/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/color/human.ts -------------------------------------------------------------------------------- /src/locales/nl/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/color/index.ts -------------------------------------------------------------------------------- /src/locales/nl/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/date/index.ts -------------------------------------------------------------------------------- /src/locales/nl/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/date/month.ts -------------------------------------------------------------------------------- /src/locales/nl/hacker/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/hacker/noun.ts -------------------------------------------------------------------------------- /src/locales/nl/hacker/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/hacker/verb.ts -------------------------------------------------------------------------------- /src/locales/nl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/index.ts -------------------------------------------------------------------------------- /src/locales/nl/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/nl/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/nl/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/metadata.ts -------------------------------------------------------------------------------- /src/locales/nl/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl/person/name.ts -------------------------------------------------------------------------------- /src/locales/nl/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['Jr.', 'Sr.']; 2 | -------------------------------------------------------------------------------- /src/locales/nl_BE/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl_BE/index.ts -------------------------------------------------------------------------------- /src/locales/nl_BE/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####']; 2 | -------------------------------------------------------------------------------- /src/locales/nl_BE/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/nl_BE/metadata.ts -------------------------------------------------------------------------------- /src/locales/nl_BE/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['MBA', 'Phd.']; 2 | -------------------------------------------------------------------------------- /src/locales/pl/book/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/book/author.ts -------------------------------------------------------------------------------- /src/locales/pl/book/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/book/format.ts -------------------------------------------------------------------------------- /src/locales/pl/book/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/book/genre.ts -------------------------------------------------------------------------------- /src/locales/pl/book/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/book/index.ts -------------------------------------------------------------------------------- /src/locales/pl/book/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/book/series.ts -------------------------------------------------------------------------------- /src/locales/pl/book/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/book/title.ts -------------------------------------------------------------------------------- /src/locales/pl/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/color/human.ts -------------------------------------------------------------------------------- /src/locales/pl/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/color/index.ts -------------------------------------------------------------------------------- /src/locales/pl/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/index.ts -------------------------------------------------------------------------------- /src/locales/pl/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/pl/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['##-###']; 2 | -------------------------------------------------------------------------------- /src/locales/pl/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['m. ###']; 2 | -------------------------------------------------------------------------------- /src/locales/pl/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/pl/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/pl/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/metadata.ts -------------------------------------------------------------------------------- /src/locales/pl/music/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/music/genre.ts -------------------------------------------------------------------------------- /src/locales/pl/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/music/index.ts -------------------------------------------------------------------------------- /src/locales/pl/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/person/name.ts -------------------------------------------------------------------------------- /src/locales/pl/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['kobieta', 'mężczyzna']; 2 | -------------------------------------------------------------------------------- /src/locales/pl/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/team/index.ts -------------------------------------------------------------------------------- /src/locales/pl/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{team.prefix}} {{location.city}}']; 2 | -------------------------------------------------------------------------------- /src/locales/pl/team/prefix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pl/team/prefix.ts -------------------------------------------------------------------------------- /src/locales/pt_BR/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pt_BR/index.ts -------------------------------------------------------------------------------- /src/locales/pt_BR/location/city_prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/pt_BR/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pt_BR/metadata.ts -------------------------------------------------------------------------------- /src/locales/pt_PT/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pt_PT/index.ts -------------------------------------------------------------------------------- /src/locales/pt_PT/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/pt_PT/location/city_prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/pt_PT/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/pt_PT/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/pt_PT/metadata.ts -------------------------------------------------------------------------------- /src/locales/pt_PT/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/ro/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro/date/index.ts -------------------------------------------------------------------------------- /src/locales/ro/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro/date/month.ts -------------------------------------------------------------------------------- /src/locales/ro/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro/index.ts -------------------------------------------------------------------------------- /src/locales/ro/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['Bloc ##']; 2 | -------------------------------------------------------------------------------- /src/locales/ro/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/ro/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro/metadata.ts -------------------------------------------------------------------------------- /src/locales/ro/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro/person/name.ts -------------------------------------------------------------------------------- /src/locales/ro/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['Jr.', 'Sr.']; 2 | -------------------------------------------------------------------------------- /src/locales/ro_MD/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro_MD/index.ts -------------------------------------------------------------------------------- /src/locales/ro_MD/location/city_prefix.ts: -------------------------------------------------------------------------------- 1 | export default ['Raionul', 'Municipiu']; 2 | -------------------------------------------------------------------------------- /src/locales/ro_MD/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['MD-####']; 2 | -------------------------------------------------------------------------------- /src/locales/ro_MD/location/state.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/ro_MD/location/state_abbr.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/ro_MD/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ro_MD/metadata.ts -------------------------------------------------------------------------------- /src/locales/ro_MD/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/ru/book/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/book/author.ts -------------------------------------------------------------------------------- /src/locales/ru/book/format.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/book/format.ts -------------------------------------------------------------------------------- /src/locales/ru/book/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/book/genre.ts -------------------------------------------------------------------------------- /src/locales/ru/book/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/book/index.ts -------------------------------------------------------------------------------- /src/locales/ru/book/series.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/book/series.ts -------------------------------------------------------------------------------- /src/locales/ru/book/title.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/book/title.ts -------------------------------------------------------------------------------- /src/locales/ru/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/color/human.ts -------------------------------------------------------------------------------- /src/locales/ru/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/color/index.ts -------------------------------------------------------------------------------- /src/locales/ru/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/date/index.ts -------------------------------------------------------------------------------- /src/locales/ru/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/date/month.ts -------------------------------------------------------------------------------- /src/locales/ru/hacker/noun.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/hacker/noun.ts -------------------------------------------------------------------------------- /src/locales/ru/hacker/verb.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/hacker/verb.ts -------------------------------------------------------------------------------- /src/locales/ru/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/index.ts -------------------------------------------------------------------------------- /src/locales/ru/location/building_number.ts: -------------------------------------------------------------------------------- 1 | export default ['###']; 2 | -------------------------------------------------------------------------------- /src/locales/ru/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/ru/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['кв. ###']; 2 | -------------------------------------------------------------------------------- /src/locales/ru/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/ru/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/ru/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/metadata.ts -------------------------------------------------------------------------------- /src/locales/ru/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ru/person/name.ts -------------------------------------------------------------------------------- /src/locales/ru/person/prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/ru/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/sk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sk/index.ts -------------------------------------------------------------------------------- /src/locales/sk/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/sk/location/city_prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/sk/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/sk/location/state_abbr.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/sk/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/sk/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sk/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/sk/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sk/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/sk/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sk/metadata.ts -------------------------------------------------------------------------------- /src/locales/sk/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sk/person/name.ts -------------------------------------------------------------------------------- /src/locales/sk/person/suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['Phd.']; 2 | -------------------------------------------------------------------------------- /src/locales/sl_SI/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sl_SI/index.ts -------------------------------------------------------------------------------- /src/locales/sl_SI/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sl_SI/metadata.ts -------------------------------------------------------------------------------- /src/locales/sl_SI/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['ženski', 'moški']; 2 | -------------------------------------------------------------------------------- /src/locales/sr_RS_latin/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/sr_RS_latin/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['Sprat #', 'Stan ##']; 2 | -------------------------------------------------------------------------------- /src/locales/sr_RS_latin/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/sv/cell_phone/common_cell_prefix.ts: -------------------------------------------------------------------------------- 1 | export default [56, 62, 59]; 2 | -------------------------------------------------------------------------------- /src/locales/sv/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/color/human.ts -------------------------------------------------------------------------------- /src/locales/sv/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/color/index.ts -------------------------------------------------------------------------------- /src/locales/sv/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/date/index.ts -------------------------------------------------------------------------------- /src/locales/sv/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/date/month.ts -------------------------------------------------------------------------------- /src/locales/sv/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/index.ts -------------------------------------------------------------------------------- /src/locales/sv/location/common_street_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['s Väg', 's Gata']; 2 | -------------------------------------------------------------------------------- /src/locales/sv/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/metadata.ts -------------------------------------------------------------------------------- /src/locales/sv/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/person/name.ts -------------------------------------------------------------------------------- /src/locales/sv/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/team/index.ts -------------------------------------------------------------------------------- /src/locales/sv/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city}} {{team.suffix}}']; 2 | -------------------------------------------------------------------------------- /src/locales/sv/team/suffix.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/sv/team/suffix.ts -------------------------------------------------------------------------------- /src/locales/ta_IN/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ta_IN/index.ts -------------------------------------------------------------------------------- /src/locales/ta_IN/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ta_IN/metadata.ts -------------------------------------------------------------------------------- /src/locales/th/animal/cat.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/animal/cat.ts -------------------------------------------------------------------------------- /src/locales/th/animal/dog.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/animal/dog.ts -------------------------------------------------------------------------------- /src/locales/th/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/color/human.ts -------------------------------------------------------------------------------- /src/locales/th/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/color/index.ts -------------------------------------------------------------------------------- /src/locales/th/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/date/index.ts -------------------------------------------------------------------------------- /src/locales/th/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/date/month.ts -------------------------------------------------------------------------------- /src/locales/th/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/index.ts -------------------------------------------------------------------------------- /src/locales/th/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/th/location/city_prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/th/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/th/location/postcode.ts: -------------------------------------------------------------------------------- 1 | export default ['####0']; 2 | -------------------------------------------------------------------------------- /src/locales/th/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/th/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/metadata.ts -------------------------------------------------------------------------------- /src/locales/th/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/th/person/name.ts -------------------------------------------------------------------------------- /src/locales/th/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['ชาย', 'หญิง']; 2 | -------------------------------------------------------------------------------- /src/locales/tr/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/color/human.ts -------------------------------------------------------------------------------- /src/locales/tr/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/color/index.ts -------------------------------------------------------------------------------- /src/locales/tr/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/index.ts -------------------------------------------------------------------------------- /src/locales/tr/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/tr/location/street_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.street_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/tr/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/tr/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/tr/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/metadata.ts -------------------------------------------------------------------------------- /src/locales/tr/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/tr/person/name.ts -------------------------------------------------------------------------------- /src/locales/uk/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/uk/index.ts -------------------------------------------------------------------------------- /src/locales/uk/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['град']; 2 | -------------------------------------------------------------------------------- /src/locales/uk/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['кв. ###']; 2 | -------------------------------------------------------------------------------- /src/locales/uk/location/street_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['майдан']; 2 | -------------------------------------------------------------------------------- /src/locales/uk/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/uk/metadata.ts -------------------------------------------------------------------------------- /src/locales/uk/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/uk/person/name.ts -------------------------------------------------------------------------------- /src/locales/ur/animal/bear.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/animal/bear.ts -------------------------------------------------------------------------------- /src/locales/ur/animal/cow.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/animal/cow.ts -------------------------------------------------------------------------------- /src/locales/ur/animal/lion.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/animal/lion.ts -------------------------------------------------------------------------------- /src/locales/ur/animal/type.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/animal/type.ts -------------------------------------------------------------------------------- /src/locales/ur/app/author.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/app/author.ts -------------------------------------------------------------------------------- /src/locales/ur/app/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/app/index.ts -------------------------------------------------------------------------------- /src/locales/ur/app/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/app/name.ts -------------------------------------------------------------------------------- /src/locales/ur/app/version.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/app/version.ts -------------------------------------------------------------------------------- /src/locales/ur/color/human.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/color/human.ts -------------------------------------------------------------------------------- /src/locales/ur/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/color/index.ts -------------------------------------------------------------------------------- /src/locales/ur/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/date/index.ts -------------------------------------------------------------------------------- /src/locales/ur/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/date/month.ts -------------------------------------------------------------------------------- /src/locales/ur/finance/account_type.ts: -------------------------------------------------------------------------------- 1 | export default ['Current', 'Savings']; 2 | -------------------------------------------------------------------------------- /src/locales/ur/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/index.ts -------------------------------------------------------------------------------- /src/locales/ur/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['ٹاوْن']; 2 | -------------------------------------------------------------------------------- /src/locales/ur/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/ur/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/ur/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/metadata.ts -------------------------------------------------------------------------------- /src/locales/ur/music/genre.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/music/genre.ts -------------------------------------------------------------------------------- /src/locales/ur/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/music/index.ts -------------------------------------------------------------------------------- /src/locales/ur/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/person/name.ts -------------------------------------------------------------------------------- /src/locales/ur/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['عورت', 'مرد']; 2 | -------------------------------------------------------------------------------- /src/locales/ur/team/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/ur/team/index.ts -------------------------------------------------------------------------------- /src/locales/ur/team/name.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.state}} {{team.creature}}']; 2 | -------------------------------------------------------------------------------- /src/locales/ur/vehicle/model.ts: -------------------------------------------------------------------------------- 1 | export default ['اکورڈ', 'سوک', 'کرولا']; 2 | -------------------------------------------------------------------------------- /src/locales/ur/vehicle/type.ts: -------------------------------------------------------------------------------- 1 | export default ['سواری', 'ہیچ بیک']; 2 | -------------------------------------------------------------------------------- /src/locales/uz_UZ_latin/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/uz_UZ_latin/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['Erkak', 'Ayol']; 2 | -------------------------------------------------------------------------------- /src/locales/vi/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/date/index.ts -------------------------------------------------------------------------------- /src/locales/vi/date/month.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/date/month.ts -------------------------------------------------------------------------------- /src/locales/vi/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/index.ts -------------------------------------------------------------------------------- /src/locales/vi/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/vi/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/lorem/index.ts -------------------------------------------------------------------------------- /src/locales/vi/lorem/word.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/lorem/word.ts -------------------------------------------------------------------------------- /src/locales/vi/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/metadata.ts -------------------------------------------------------------------------------- /src/locales/vi/person/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/vi/person/name.ts -------------------------------------------------------------------------------- /src/locales/yo_NG/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/yo_NG/index.ts -------------------------------------------------------------------------------- /src/locales/yo_NG/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/yo_NG/metadata.ts -------------------------------------------------------------------------------- /src/locales/zh_CN/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/zh_CN/index.ts -------------------------------------------------------------------------------- /src/locales/zh_CN/location/secondary_address.ts: -------------------------------------------------------------------------------- 1 | export default ['公寓 ###', '套房 ###']; 2 | -------------------------------------------------------------------------------- /src/locales/zh_CN/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/zh_CN/metadata.ts -------------------------------------------------------------------------------- /src/locales/zh_CN/person/prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/zh_CN/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['女', '男']; 2 | -------------------------------------------------------------------------------- /src/locales/zh_TW/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/zh_TW/index.ts -------------------------------------------------------------------------------- /src/locales/zh_TW/location/city_suffix.ts: -------------------------------------------------------------------------------- 1 | export default ['縣', '市']; 2 | -------------------------------------------------------------------------------- /src/locales/zh_TW/location/state.ts: -------------------------------------------------------------------------------- 1 | export default ['福建省', '台灣省']; 2 | -------------------------------------------------------------------------------- /src/locales/zh_TW/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/zh_TW/metadata.ts -------------------------------------------------------------------------------- /src/locales/zh_TW/person/prefix.ts: -------------------------------------------------------------------------------- 1 | export default null; 2 | -------------------------------------------------------------------------------- /src/locales/zh_TW/person/sex.ts: -------------------------------------------------------------------------------- 1 | export default ['女', '男']; 2 | -------------------------------------------------------------------------------- /src/locales/zu_ZA/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/zu_ZA/index.ts -------------------------------------------------------------------------------- /src/locales/zu_ZA/location/city_pattern.ts: -------------------------------------------------------------------------------- 1 | export default ['{{location.city_name}}']; 2 | -------------------------------------------------------------------------------- /src/locales/zu_ZA/metadata.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/locales/zu_ZA/metadata.ts -------------------------------------------------------------------------------- /src/modules/airline/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/airline/index.ts -------------------------------------------------------------------------------- /src/modules/animal/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/animal/index.ts -------------------------------------------------------------------------------- /src/modules/book/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/book/index.ts -------------------------------------------------------------------------------- /src/modules/color/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/color/index.ts -------------------------------------------------------------------------------- /src/modules/commerce/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/commerce/index.ts -------------------------------------------------------------------------------- /src/modules/company/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/company/index.ts -------------------------------------------------------------------------------- /src/modules/database/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/database/index.ts -------------------------------------------------------------------------------- /src/modules/datatype/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/datatype/index.ts -------------------------------------------------------------------------------- /src/modules/date/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/date/index.ts -------------------------------------------------------------------------------- /src/modules/finance/iban.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/finance/iban.ts -------------------------------------------------------------------------------- /src/modules/finance/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/finance/index.ts -------------------------------------------------------------------------------- /src/modules/food/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/food/index.ts -------------------------------------------------------------------------------- /src/modules/git/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/git/index.ts -------------------------------------------------------------------------------- /src/modules/hacker/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/hacker/index.ts -------------------------------------------------------------------------------- /src/modules/helpers/eval.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/helpers/eval.ts -------------------------------------------------------------------------------- /src/modules/helpers/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/helpers/index.ts -------------------------------------------------------------------------------- /src/modules/image/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/image/index.ts -------------------------------------------------------------------------------- /src/modules/internet/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/internet/index.ts -------------------------------------------------------------------------------- /src/modules/location/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/location/index.ts -------------------------------------------------------------------------------- /src/modules/lorem/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/lorem/index.ts -------------------------------------------------------------------------------- /src/modules/music/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/music/index.ts -------------------------------------------------------------------------------- /src/modules/number/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/number/index.ts -------------------------------------------------------------------------------- /src/modules/person/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/person/index.ts -------------------------------------------------------------------------------- /src/modules/phone/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/phone/index.ts -------------------------------------------------------------------------------- /src/modules/science/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/science/index.ts -------------------------------------------------------------------------------- /src/modules/string/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/string/index.ts -------------------------------------------------------------------------------- /src/modules/system/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/system/index.ts -------------------------------------------------------------------------------- /src/modules/vehicle/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/vehicle/index.ts -------------------------------------------------------------------------------- /src/modules/word/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/modules/word/index.ts -------------------------------------------------------------------------------- /src/randomizer.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/randomizer.ts -------------------------------------------------------------------------------- /src/simple-faker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/simple-faker.ts -------------------------------------------------------------------------------- /src/utils/merge-locales.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/utils/merge-locales.ts -------------------------------------------------------------------------------- /src/utils/mersenne.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/src/utils/mersenne.ts -------------------------------------------------------------------------------- /test/all-functional.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/all-functional.spec.ts -------------------------------------------------------------------------------- /test/docs/format.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/docs/format.spec.ts -------------------------------------------------------------------------------- /test/docs/versions.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/docs/versions.spec.ts -------------------------------------------------------------------------------- /test/faker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/faker.spec.ts -------------------------------------------------------------------------------- /test/internal/base32.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/internal/base32.spec.ts -------------------------------------------------------------------------------- /test/internal/base64.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/internal/base64.spec.ts -------------------------------------------------------------------------------- /test/internal/date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/internal/date.spec.ts -------------------------------------------------------------------------------- /test/internal/seed.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/internal/seed.spec.ts -------------------------------------------------------------------------------- /test/locale-data.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/locale-data.spec.ts -------------------------------------------------------------------------------- /test/locale-imports.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/locale-imports.spec.ts -------------------------------------------------------------------------------- /test/modules/airline.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/airline.spec.ts -------------------------------------------------------------------------------- /test/modules/animal.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/animal.spec.ts -------------------------------------------------------------------------------- /test/modules/book.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/book.spec.ts -------------------------------------------------------------------------------- /test/modules/color.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/color.spec.ts -------------------------------------------------------------------------------- /test/modules/commerce.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/commerce.spec.ts -------------------------------------------------------------------------------- /test/modules/company.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/company.spec.ts -------------------------------------------------------------------------------- /test/modules/database.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/database.spec.ts -------------------------------------------------------------------------------- /test/modules/datatype.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/datatype.spec.ts -------------------------------------------------------------------------------- /test/modules/date.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/date.spec.ts -------------------------------------------------------------------------------- /test/modules/finance.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/finance.spec.ts -------------------------------------------------------------------------------- /test/modules/food.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/food.spec.ts -------------------------------------------------------------------------------- /test/modules/git.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/git.spec.ts -------------------------------------------------------------------------------- /test/modules/hacker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/hacker.spec.ts -------------------------------------------------------------------------------- /test/modules/helpers.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/helpers.spec.ts -------------------------------------------------------------------------------- /test/modules/image.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/image.spec.ts -------------------------------------------------------------------------------- /test/modules/internet.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/internet.spec.ts -------------------------------------------------------------------------------- /test/modules/location.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/location.spec.ts -------------------------------------------------------------------------------- /test/modules/lorem.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/lorem.spec.ts -------------------------------------------------------------------------------- /test/modules/music.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/music.spec.ts -------------------------------------------------------------------------------- /test/modules/number.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/number.spec.ts -------------------------------------------------------------------------------- /test/modules/person.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/person.spec.ts -------------------------------------------------------------------------------- /test/modules/phone.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/phone.spec.ts -------------------------------------------------------------------------------- /test/modules/science.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/science.spec.ts -------------------------------------------------------------------------------- /test/modules/string.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/string.spec.ts -------------------------------------------------------------------------------- /test/modules/system.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/system.spec.ts -------------------------------------------------------------------------------- /test/modules/vehicle.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/vehicle.spec.ts -------------------------------------------------------------------------------- /test/modules/word.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/modules/word.spec.ts -------------------------------------------------------------------------------- /test/require.spec.cts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/require.spec.cts -------------------------------------------------------------------------------- /test/scripts/apidocs/.gitignore: -------------------------------------------------------------------------------- 1 | temp/ 2 | -------------------------------------------------------------------------------- /test/scripts/apidocs/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/scripts/apidocs/utils.ts -------------------------------------------------------------------------------- /test/setup.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/setup.ts -------------------------------------------------------------------------------- /test/simple-faker.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/simple-faker.spec.ts -------------------------------------------------------------------------------- /test/support/seeded-runs.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/support/seeded-runs.ts -------------------------------------------------------------------------------- /test/support/times.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/support/times.ts -------------------------------------------------------------------------------- /test/utils/mersenne.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/utils/mersenne.spec.ts -------------------------------------------------------------------------------- /test/vitest-extensions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/test/vitest-extensions.ts -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/tsup.config.ts -------------------------------------------------------------------------------- /vitest.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/vitest.config.ts -------------------------------------------------------------------------------- /vitest.it-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/faker-js/faker/HEAD/vitest.it-config.ts --------------------------------------------------------------------------------