1.0.0 • Published 3 years ago

cool-capitalize v1.0.0

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

Cool Capitalize

Simple function that capitalizes the first letter of each word in a sentence.

Installing

npm install cool-capitalize

or

yarn add cool-capitalize

Importing

ES5

const capitalize = require("cool-capitalize");

or ES6

import capitalize from "cool-capitalize";

Usage

const capitalized = capitalize("this is a sentence");

console.log(capitalized);
// This Is A Sentence