simple-case-converter
v1.0.4
Published
String Case Converter
Downloads
2
Readme
Simple Case Converter
"simple-case-converter" is an npm package that provides functions for easily changing the case of text. Developers can quickly and efficiently manage text casing formats according to the needs of their projects.
How To Use
const simpleCaseConverter = require('simple-case-converter');
console.log(simpleCaseConverter.sentenceCase('hello world'));
// Result : 'Hello world.'
console.log(simpleCaseConverter.capitalizeEachWord('hello world'));
// Result : 'Hello World.'