adverbs
v0.0.2
Published
Identify adverbs in a given text
Downloads
10
Maintainers
Readme
Adverbs
Identify adverbs in a given text. This combines a number of different methods for identifying adverbs. Namely, it leverages the excellent adverb-where library with some additional checks.
Installation
npm install adverbs
Usage
var adverbs = require('adverbs');
var locations = adverbs('This is an extremely bad sentence');
// locations -> [{ index: 11, offset: 9 }]
Credit
- @btford and his excellent linter write-good.
- @duereg for his most useful adverb-where library.
- iA Writer and Hemingway app for their inspiring implementations of writing software.