1.0.1 • Published 2 years ago
make-titlecase v1.0.1
⚙️ Installation
npm i make-titlecase📖 Usage
▸ Import
// ES6
import makeTitleCase from "make-titlecase";
// commonjs
const makeTitleCase = require("make-titlecase");▸ Examples
// with string
makeTitleCase("hello world");
// Hello World
// with arrays
makeTitleCase(["hey there", "how are you?"])
// ["Hey There", "How Are You?"]Make sure to console.log() the values to see the output!