Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/panashemuriro/shona-zita
generate random fake shona names for use as placeholder names in mock ups
https://github.com/panashemuriro/shona-zita
Last synced: about 2 months ago
JSON representation
generate random fake shona names for use as placeholder names in mock ups
- Host: GitHub
- URL: https://github.com/panashemuriro/shona-zita
- Owner: panasheMuriro
- Created: 2021-10-24T13:57:15.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2021-10-25T15:46:57.000Z (about 3 years ago)
- Last Synced: 2023-09-21T14:30:09.778Z (over 1 year ago)
- Size: 26.4 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# shona-zita
![faker (1)](https://user-images.githubusercontent.com/87081585/138597901-dc91a2ab-70b7-46be-8d30-a2bb7c348b1e.png)
generate random fake shona first names, surnames, and full names from 1000 options for use as placeholder names in mock ups. Follow the steps below to use this package
## install
```
npm install shona-zita
```
## usage
```const zita = require("shona-zita");
```zita.zitaRekutanga( ) method generates a random first name of a person
```
const zita_remunhu_rekutanga = zita.zitaRekutanga(); // Panashe
```zita.zitaRekupedzisira( ) method generates a random shona last name
```
const zita_remunhu_rekupedzisira = zita.zitaRekupedzisira(); // Muriro
```
zita.zitaRakazara( ) method generates a random shona full name```
const zita_remunhu_rakazara = zita.zitaRakazara(); // Panashe Muriro
```---