Intelligently split a string into sentences.
Text to split into sentences.
Will throw an error if the input is not a string.
splitSentences('Hello world. How are you?');//=> ['Hello world.', 'How are you?'] Copy
splitSentences('Hello world. How are you?');//=> ['Hello world.', 'How are you?']
Generated using TypeDoc
Intelligently split a string into sentences.