Get superb like adjectives
Currently ~100 adjectives. I'm not accepting more words.
The word list itself is just a JSON file and can be used anywhere.
npm install superb
import superbWords from 'superb';
superbWords;
//=> ['ace', 'amazing', …]
Type: string[]
All the adjectives in alphabetical order.
Type: Function
Get a random adjective.
import {randomSuperbWord} from 'superb';
randomSuperbWord();
//=> 'legendary'
randomSuperbWord();
//=> 'awesome'