1.0.9 • Published 6 years ago
@soggybag/justincase v1.0.9
justIncase
A library of string functions to help managing case.
API
Table of Contents
capitalize
Capitalize first letter
Returns any String
capitalizeAll
Capitalize all
Returns any String
allCaps
Alias for toUpperCase()
Returns any String
Code samples
let hello = "Hello World"
let foo = "foo bar"Capitalize the first letter of a string
console.log(hello.capitalize()) // Hello World
console.log(foo.capitalize()) // Foo barCapitalize the first letter of all words in a string
console.log(foo.capitalizeAll()) // Foo BarAlternate case in a string, odd characters will be upper
console.log(foo.oddCaps()) // fOo bAr
console.log(hello.oddCaps()) // HElLo WOrLdAlternate cae with even characters upper
console.log(foo.evenCaps()) // FoO BaRReplace all spaces with a hyphen "-"
console.log(hello.kabobCase()) // Hello-World
console.log(foo.kabobCase()) // foo-barReplaces all spaces with an underscore "_"
console.log(hello.snakeCase()) // Hello_World
console.log(foo.snakeCase()) // foo_bar