Get yes/no-like words

The lists are just JSON files and can be used anywhere.
npm install yes-no-words
import yesNoWords from 'yes-no-words';
yesNoWords.yesRandom();
//=> 'Yisss'
.yesType: string[]
Yes like words.
.noType: string[]
No like words.
.allType: string[]
Both yes and no like words.
.yesRandom()Type: Function
Random yes like words.
.noRandom()Type: Function
Random no like words.
.allRandom()Type: Function
Random yes or no like words.
npm install --global yes-no-words
$ yes-no --help
Examples
$ yes-no
Yisss
$ yes-no --all --type yes
Absolutely
Affirmative
…
Options
--all Get all words instead of a random word
--type Type of word: yes|no|all [Default: all]