wordnet icon indicating copy to clipboard operation
wordnet copied to clipboard

Node module wrapper for WordNet dictionary.

Results 3 wordnet issues
Sort by recently updated
recently updated
newest added

for example, the original tcl/c++ version can tell that "cat" and "caterpillar" are synonyms: ``` $ /usr/local/WordNet-3.0/bin/wn cat -synsn Synonyms/Hypernyms (Ordered by Estimated Frequency) of noun cat 8 senses of...

With the help of @joelyjoel 's [issue](https://github.com/words/wordnet/issues/7#issue-734707005), I added type declarations to the project. The majority of the work was done by @joelyjoel . It was just a matter of...

Hello, I've been using this module a lot recently and I wrote some ambient ts definitions for it: ``` type SynsetType = 'noun' | 'verb' | 'adjective' | 'adjective satellite'...