@helvetia/random-names
v1.0.6
Published
Simple library for generating a random name or names from a list of ancient greek names.
Downloads
26
Readme
Random name generator
Demo link: https://danielrichter91.github.io/random-names/demo/dist/
What does @helvetia/random-names do?
Returns a random item from a list of ancient greek names.
Installation
npm install --save @helvetia/random-names
Usage
Basic
Random Male or Female name
import { single } from '@helvetia/random-names';
single();
// > 'Adonis'
Male
import { single } from '@helvetia/random-names';
single('MALE');
// > 'Homer'
Female
import { single } from '@helvetia/random-names';
single('FEMALE');
// > 'Athena'
List
import { list } from '@helvetia/random-names';
list(5);
// > ['Krista', 'Euripides', 'Phyllis', 'Agesilaus', 'Denys']
API
Available functions
single
Arguments
| Argument | Type | Default | Options | | -------- | ------ | ------- | ------- | | gender | String | None | MALE, FEMALE |
list
Arguments
| Argument | Type | Default | | -------- | ------ | ------- | | length | Number | 0 |