npm module for checking for wordy or unnecessary passages in your writing
npm install too-wordy
const complexity = require('too-wordy');
const problems = complexity('An abundance of long winded words to accentuate this boring sentence......');
// problems -> [{ match: "abundance", index: 3, offset: 9 }, {match: accentuate, ....}]
MIT