make-words
v0.2.8
Published
generate random words
Downloads
5
Readme
make-words
Installation
Use the package manager npm to install make-words.
npm i make-words
Functions
getWordByLength(length) ⇒ string
get all words thet have a specific length
Kind: global function
| Param | Type | | ------ | ------------------- | | length | number |
getRandomWord() ⇒ string
get a random word from the dataset
Kind: global function
getWord(length, letters, excludeChars, [mustHaveLetter])
get a word that has a specific length and that includes the most letters possible from the letters array
Kind: global function
| Param | Type | | ------------------ | --------------------------------- | | length | number | | letters | Array.<string> | | excludeChars | Array.<string> | | [mustHaveLetter] | string |
getWords(count, minWordLength, maxWordLength, letters, excludeChars, [mustHaveLetter])
get any number of random words that contain specific letters
Kind: global function
| Param | Type | | ------------------ | --------------------------------- | | count | number | | minWordLength | number | | maxWordLength | number | | letters | Array.<string> | | excludeChars | Array.<string> | | [mustHaveLetter] | string |