/Meteor-Articles

Meteor package for determining indefinite articles (a vs. an) for English words.

Primary LanguageJavaScriptOtherNOASSERTION

Meteor Articles (A vs. An)

Determines whether "a" or "an" should precede a word in English using the method described in this stackoverflow response. The wikipedia-article-text dump provided by Eamon Nerbonne was used as the basis for the dataset, and this package is based off the NPM module Articles by @chadkirby.

Installation

meteor add altapp:articles

Usage

findArticle('house'); // returns 'a'

articlize('apple'); // returns 'an apple'