A package that converts the first letter to upperCase for any string.
npm install capitalize-the-first-letterA package that converts the first letter to upperCase for any string.
``javascript`
const capitalize = require("capitalize-first-letter")
capitalize("john doe") //=> 'John Doe';
`javascript``
import capitalize from "capitalize-first-letter"