simple-title-caser
v1.0.0
Published
A simple package to convert a string to title case.
Maintainers
Readme
Simple Title Caser
A simple package to convert a string to title case.
Installation
Install the package using npm:
npm install simple-title-caser
const { toTitleCase } = require('simple-title-caser');
const myString = "hello world, this is a test.";
const titleCased = toTitleCase(myString);
console.log(titleCased); // Output: 'Hello World, This Is A Test.'