1.0.1 • Published 4 years ago

capitalize-text v1.0.1

Weekly downloads
3
License
ISC
Repository
github
Last release
4 years ago

A simple JavaScript Module for Capitalizing Text

capitalize() is a lightweight, easy to use module for capitalizing your inputted string.

How to use Module

  • Install the module from npm using following command
    • npm install capitalize-text
  • Import the module from where you want

    • const capitalize = require('capitalize-text')

    Example Code

    const capitalize = require('capitalize-text');
    
    let capitalizedString = capitalize("Hello world! this is just a demo text");