1.0.1 • Published 4 years ago

capitalize-decapitalize v1.0.1

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

Build Status

Overview

NPM package for capitalizing or decapitalizing every first letter of the word. Letter case option (Upper & lower case) for every word in a sentence.

Installation

npm i capitalize-decapitalize --save

Setup & Basic Usage

const letterCase = require('capitalize-decapitalize')

console.log(letterCase('c','hello world')
// Hello World

Additional info & options

1st Param (upper or lower case format)2nd Param
C - Capitalize first letter of the wordString value

| D - Decapitalize (uncapitalize) first letter of the word | UC - Upper case all words | LC - Lower case all words

Examples

console.log(letterCase('c','hello world')
// Hello World

console.log(letterCase('d','Hello World')
// hello world

console.log(letterCase('uc','Hello World')
// HELLO WORLD

console.log(letterCase('lc','Hello World')
// hello world

Feel free to clone or fork this project: https://github.com/deanilvincent/capitalize-decapitalize.git

Contributions & pull requests are welcome!

I'll be glad if you give this project a ★ on Github :))

License

This project is licensed under the MIT License - see the LICENSE.md file for details.