String Capitalizer is a light weight library written in vanilla JavaScript (ES6) that simplifies string capitalization by offering mutiple string manipulation functions. At the moment the library consists of a single string manipulation method, it will expand to include more methods in later versions.
capitalizeString() method capitalizes the first letter of a string and returns the capitalized string. If invalid string is inputted, 'invalid string'-error will be thrown.
Start by importing StringManipulator. Create a new instance of StringManipulator and invoke the method you wish to use.
import StringManipulator from 'string-capitalizer'
const stringManipulator = new StringManipulator(stringToManipulate)
const capitalizedString = stringManipulator.capitalizeString('hello world')
console.log(capitalizedString) // Hello world
This library is still in development and is not yet ready for production use. Use at your own risk.
It is a practice project for learning purposes.