seed-name
A simple name randomizer for seeding databases (or whatever you want).
##Features:
- Very simple, no dependancies.
- First (female, male, both) names or last name generation.
##Initialize
var seedNames = require('seed-names');
Seed a female name
seedNames.first( 'female' );
Seed a male name
seedNames.first( 'male' );
Seed a first name (both genders)
seedNames.first();
Seed a last name
seedNames.last();
Note: Generated from the 1000 top names in the US.
To Do
- Actually test it .. once..