2.0.0 • Published 2 years ago
capital-case-r2 v2.0.0
capital-case-r2
Additional JS String.prototype method.
Try it
https://daddybannk.github.io/capital-case-r2
Installation
npm install capital-case-r2Usage
String.toCapitalCase(ignoreCase = true)
import "capital-case-r2";
const str = "This word is UPPER CASE.";
// ignoreCase = true (default)
console.log(str.toCapitalCase()); // "This Word Is UPPER CASE."
// ignoreCase = false
console.log(str.toCapitalCase(false)); // "This Word Is Upper Case."Test
npm install --only=dev
npm run testLicense
This project is licensed under the terms of the MIT license.