nlp-syllables
v0.0.5
Published
splitting of text into syllables
Downloads
66
Readme
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' ] ]