splitsentences
v1.0.3
Published
Function that tries to split sentences by max size, first by sentence, then by other punctuation.
Downloads
4
Readme
This function receives some string content and a maximum length, and will break the content into a collection of strings that will fit the maximum length, but prioritizing: (a) sentences, (b) sentence fragments, (c) and lastly, words.
Example
const splitSentences = require('splitsentences');
const hugecontent = 'Blah blah blah.';
console.log(splitSentences(hugecontent,200));