factormystic / nlp-syllables

for splitting words into their component syllables

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

turning words into their syllables

var nlp = require('nlp_compromise');
var nlpSyllables = require('nlp-syllables');

nlp.plugin(nlpSyllables);
var t2 = nlp.term('houston texas');
t2.syllables();
//[ [ 'hous', 'ton' ], [ 'tex', 'as' ] ]

About

for splitting words into their component syllables

License:MIT License


Languages

Language:JavaScript 90.1%Language:HTML 9.9%