2.0.0 • Published 5 years ago
title-casing v2.0.0
title-casing
Ever used Python before? If you have you'll know that Python has a built in function for string manipulation called .title(). It's very helpful but if you've ever used JavaScript you'd have
noticed you only have .toLowerCase() and .toUpperCase(). Well look no further because I have solved all of your issues!!
What is title case?
let normalString = "thiSIsAString";
let titleString = "Thisisastring";Uses?
String manipulation and I'm sure you'll find more uses.😀
Example usage
import { toTitleCase } from "./index.js";
let output = toTitleCase("stRing");In this example we give a string to the function and it will convert it too title case and after that we can store the output in a variable to use elsewhere.
Outcome: StringThe outcome is shown above.