#Overview
indefinite-article.js is a JavaScript function that returns the indefinite articles "a" or "an" based on a given word or phrase. The code is a port from the Lingua::EN::Inflect Perl module found on this stackoverflow question
#Credit
indefinite-article.js was developed by @rigoneri
#Usage
// get letter
indefiniteArticle.letter('note'); // => 'a'
// get word
indefiniteArticle.word('note'); // => 'a note';