├── .changeset ├── README.md └── config.json ├── .editorconfig ├── .github ├── PULL_REQUEST_TEMPLATE.md └── workflows │ └── ci.yml ├── .gitignore ├── .npmignore ├── .prettierrc ├── CHANGELOG.md ├── CONTRIBUTING.md ├── CONTRIBUTOR_COVENANT.md ├── LICENSE ├── README.md ├── examples ├── main.mjs ├── package.json ├── pnpm-lock.yaml └── tsconfig.json ├── lib ├── account.spec.ts ├── account.ts ├── common │ ├── banks.ts │ ├── char.ts │ └── phone.ts ├── helper.ts ├── index.ts ├── internet.ts ├── locales │ ├── benin │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts │ ├── efik │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts │ ├── english │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts │ ├── hausa │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts │ ├── igbo │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts │ ├── index.ts │ ├── urhobo │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts │ └── yoruba │ │ ├── index.ts │ │ ├── names.ts │ │ └── words.ts ├── lorem.ts ├── name.ts ├── phone.spec.ts ├── phone.ts ├── random.spec.ts ├── random.ts ├── schema.ts └── types.ts ├── package.json ├── pnpm-lock.yaml ├── tsconfig.json └── tsup.config.ts /.changeset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.changeset/README.md -------------------------------------------------------------------------------- /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/ci.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.github/workflows/ci.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.gitignore -------------------------------------------------------------------------------- /.npmignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.npmignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/.prettierrc -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /CONTRIBUTOR_COVENANT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/CONTRIBUTOR_COVENANT.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/README.md -------------------------------------------------------------------------------- /examples/main.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/examples/main.mjs -------------------------------------------------------------------------------- /examples/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/examples/package.json -------------------------------------------------------------------------------- /examples/pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/examples/pnpm-lock.yaml -------------------------------------------------------------------------------- /examples/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/examples/tsconfig.json -------------------------------------------------------------------------------- /lib/account.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/account.spec.ts -------------------------------------------------------------------------------- /lib/account.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/account.ts -------------------------------------------------------------------------------- /lib/common/banks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/common/banks.ts -------------------------------------------------------------------------------- /lib/common/char.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/common/char.ts -------------------------------------------------------------------------------- /lib/common/phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/common/phone.ts -------------------------------------------------------------------------------- /lib/helper.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/helper.ts -------------------------------------------------------------------------------- /lib/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/index.ts -------------------------------------------------------------------------------- /lib/internet.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/internet.ts -------------------------------------------------------------------------------- /lib/locales/benin/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/benin/index.ts -------------------------------------------------------------------------------- /lib/locales/benin/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/benin/names.ts -------------------------------------------------------------------------------- /lib/locales/benin/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/benin/words.ts -------------------------------------------------------------------------------- /lib/locales/efik/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/efik/index.ts -------------------------------------------------------------------------------- /lib/locales/efik/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/efik/names.ts -------------------------------------------------------------------------------- /lib/locales/efik/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/efik/words.ts -------------------------------------------------------------------------------- /lib/locales/english/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/english/index.ts -------------------------------------------------------------------------------- /lib/locales/english/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/english/names.ts -------------------------------------------------------------------------------- /lib/locales/english/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/english/words.ts -------------------------------------------------------------------------------- /lib/locales/hausa/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/hausa/index.ts -------------------------------------------------------------------------------- /lib/locales/hausa/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/hausa/names.ts -------------------------------------------------------------------------------- /lib/locales/hausa/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/hausa/words.ts -------------------------------------------------------------------------------- /lib/locales/igbo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/igbo/index.ts -------------------------------------------------------------------------------- /lib/locales/igbo/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/igbo/names.ts -------------------------------------------------------------------------------- /lib/locales/igbo/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/igbo/words.ts -------------------------------------------------------------------------------- /lib/locales/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/index.ts -------------------------------------------------------------------------------- /lib/locales/urhobo/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/urhobo/index.ts -------------------------------------------------------------------------------- /lib/locales/urhobo/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/urhobo/names.ts -------------------------------------------------------------------------------- /lib/locales/urhobo/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/urhobo/words.ts -------------------------------------------------------------------------------- /lib/locales/yoruba/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/yoruba/index.ts -------------------------------------------------------------------------------- /lib/locales/yoruba/names.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/yoruba/names.ts -------------------------------------------------------------------------------- /lib/locales/yoruba/words.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/locales/yoruba/words.ts -------------------------------------------------------------------------------- /lib/lorem.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/lorem.ts -------------------------------------------------------------------------------- /lib/name.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/name.ts -------------------------------------------------------------------------------- /lib/phone.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/phone.spec.ts -------------------------------------------------------------------------------- /lib/phone.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/phone.ts -------------------------------------------------------------------------------- /lib/random.spec.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/random.spec.ts -------------------------------------------------------------------------------- /lib/random.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/random.ts -------------------------------------------------------------------------------- /lib/schema.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/schema.ts -------------------------------------------------------------------------------- /lib/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/lib/types.ts -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/package.json -------------------------------------------------------------------------------- /pnpm-lock.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/pnpm-lock.yaml -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/tsconfig.json -------------------------------------------------------------------------------- /tsup.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/BolajiOlajide/ng-faker/HEAD/tsup.config.ts --------------------------------------------------------------------------------