capitalize-text
is a lightweight, easy to use module for capitalizing your inputted string.
- Install the module from
npm
using following commandnpm install capitalize-text
- Import the module from where you want
const capitalize = require('capitalize-text')
const capitalize = require('capitalize-text');
let capitalizedString = capitalize("Hello world! this is just a demo text");