Get a random yoruba name
# yoruba-names
Get a random yoruba name
## How to install
Library is available on NPM
```bash
npm install --save yoruba-names
```
## Usage in NodeJS
See the examples/example.js file
```javascript
var yorubaNames = require('yoruba-names');
// Get a random Yoruba name
console.log(yorubaNames.random());
// Get a random number of Yoruba names
console.log(yorubaNames.random(2));
// Get a random Yoruba fullname
console.log(yorubaNames.random() + " " + yorubaNames.random());
// Get a random Royal Yoruba name
console.log(yorubaNames.Royalname());
```
## Usage in Browser
See the examples/example.html file
```html
Get a random name
Get a random number of names
Get a Royal names
```