make-titlecase
v1.0.1
Published
Convert strings and arrays to title case
Downloads
1
Readme
⚙️ 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!