npm install random-firstname> Generate a random first name.



```
$ npm install --save random-firstName
`js
var randomFirstName = require('random-firstName');
// API
// - randomFirstName([options]);
// options
// - gender
randomFirstName();
// => 'Leila'
`
Optionally specify a gender to limit first names to that gender:
`js``
randomFirstName({ gender: 'female' });
// => 'Emma'
- random-lastName - Generate a random last name.
- random-fullName - Generate a random full name.
- random-age - Generate a random age.
- random-birthday - Generate a random birthday.
Pull requests and stars are highly welcome.
For bugs and feature requests, please create an issue.