0.0.2 • Published 9 years ago

adverbs v0.0.2

Weekly downloads
3
License
MIT
Repository
github
Last release
9 years ago

Adverbs

Build Status

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