Strings Library
Description
This library includes basic string manupulation methods that you can call on string objects. Some including capitalizing words or switching cases of short (or long) phrases.
Installation
Start by running this command in your project's directory
npm install strings-library --save
And then requring it on the top of your index.js file
require('strings-library')
Methods
Method | Description | Example input | Example output |
---|
.firstCharToUpper() | returns the string with the first char capitalized | 'hello world' | 'Hello world' |
.allCaps() | returns the string completely capitalized | 'hello world' | 'HELLO WORLD' |
.allfirstCharsToUpper() | returns the string with the first letter of every word capitalized | 'hello world' | 'Hello World' |
.upperEveryOtherLetter() | returns the string with every other letter capitalized | 'hello world' | 'HeLlO wOrLd' |
.removeWhiteSpace() | returns the string with white space removed | ' hello world ' | 'hello world' |
.kabobCase() | returns the string in kabob-case | 'hello world | 'hello-world' |
.snakeCase() | returns the string in snake_case | 'hello world' | 'hello_world' |
.camelCase() | returns the string in camelCase | 'hello world' | 'helloWorld' |