check-dictionary-word
v1.1.0
Published
A module to verify if a word is a valid dictionary word. Simple and efficient word-check functionality.
Downloads
16
Maintainers
Readme
check-dictionary-word
A module to verify if a word is a valid dictionary word. Simple and efficient word-check functionality.
install
$ npm install check-dictionary-word
how to use?
const isDictionaryWord = require('check-dictionary-word'),
isDictionaryWord('cat'); // true
isDictionaryWord('trinitrophenylmethylnitramine'); // true
isDictionaryWord('fg45fg'); // false
...