Important: This documentation covers Yarn 1 (Classic).
For Yarn 2+ docs and migration guide, see yarnpkg.com.

Package detail

extra-english

nodef29MIT1.0.1

English is a West Germanic language, first spoken in early medieval England.

extra, english, text, phonetic, metaphone, caverphone, nysiis, mra, soundex, cologne

readme

English is a West Germanic language, first spoken in early medieval England. Includes various name to phonetic representation algorithms.

const english = require('extra-english');

english.caverphonePhonetic('Thompson', true);
// 'TMPSN'

english.colognePhonetic('Hari');
// '7'

english.metaphonePhonetic('Lightyear');
// 'LHTYAR'

english.nysiisPhonetic('Mackie');
// 'MCY'

reference

Name Action
caverphonePhonetic Gets Caverphone phonetic of english text.
colognePhonetic Gets Cologne phonetic of english text.
metaphonePhonetic Gets Metaphone phonetic of english text.
mraPhonetic Gets Match Rating Approach phonetic of english text.
nysiisPhonetic Gets NYSIIS phonetic of english text.
soundexPhonetic Gets Soundex phonetic of english text.
soundexSqlPhonetic Gets Soundex phonetic (SQL) of english text.


nodef