unsullied
v1.0.0
Published
Random unsullied name -and color- generator.
Downloads
55
Maintainers
Readme
UNSULLIED
Random unsullied
name -and color- generator.
Install
npm install --save unsullied
If you need to use it as a CLI tool:
npm install -g unsullied
Use
const unsullied = require('unsullied');
const name = unsullied();
// 'grey.worm'
With options:
const unsullied = require('unsullied');
const name = unsullied({
separator: '-'
});
// 'grey-worm'
Available options
- case:
upper
||camel
, - separator:
[string]
(Default: .),
CLI use:
$> unsullied
// 'grey.worm'
$> unsullied --case=upper
// GREY.WORM
$> unsullied --case=camel
// grey.Worm
Contribute
fork https://github.com/aichholzer/unsullied/
More ideas for adjectives and vermin (See ./lib/data.json
) are always welcome.