Small and fast library to convert a paragraph to sentence case.
$ npm install --save sentencecase.js
or
$ yarn add sentencecase.js
const toSentenceCase = require("sentencecase.js");
const paragraph = 'she\'s a cOOl person. dogs ARE loyal Friends! Aren\'t tHEy? pErIoD.';
console.log(toSentenceCase(paragraph));
// She's a cool person. Dogs are loyal friends! Aren't they? Period.
npm test
or
yarn test