on-the-case
v2.1.3
Published
Extends JavaScript's native `String` object, including additional case conversion methods
Downloads
6
Readme
onTheCase.js
Extends JavaScript's native String
object, including additional
case conversion methods.
Table of Contents
Getting Started
To use onTheCase.js, add it to your project.
yarn add on-the-case
Alternatively, onTheCase.js can be added to your project via CDN.
<script href="https://unpkg.com/on-the-case/index.js"></script>
Usage
The following case conversion methods are included in onTheCase.js.
Camel Case
The toCamelCase()
method returns the calling string value converted to camel
case.
Examples
'Hello, World!'.toCamelCase();
// => 'helloWorld'
'The quick brown fox jumps over the lazy dog.'.toCamelCase();
// => 'theQuickBrownFoxJumpsOverTheLazyDog'
Kebab Case
The toKebabCase()
method returns the calling string value converted to kebab
case.
Examples
'Hello, World!'.toKebabCase();
// => 'hello-world'
'the-quick-brown-fox-jumps-over-the-lazy-dog.'.toKebabCase();
// => 'the-quick-brown-fox-jumps-over-the-lazy-dog'
Pascal Case
The toPascalCase()
method returns the calling string value converted to pascal
case.
Examples
'Hello, World!'.toPascalCase();
// => 'HelloWorld'
'The quick brown fox jumps over the lazy dog.'.toPascalCase();
// => 'TheQuickBrownFoxJumpsOverTheLazyDog'
Snake Case
The toSnakeCase()
method returns the calling string value converted to snake
case.
Examples
'Hello, World!'.toSnakeCase();
// => 'hello_world'
'The quick brown fox jumps over the lazy dog.'.toSnakeCase();
// => 'the_quick_brown_fox_jumps_over_the_lazy_dog'
Title Case
The toTitleCase()
method returns the calling string value converted to title
case.
Examples
'Hello, World!'.toTitleCase();
// => 'Hello, World!'
'The quick brown fox jumps over the lazy dog.'.toTitleCase();
// => 'The Quick Brown Fox Jumps Over the Lazy Dog.'
Issues
If you encounter any bugs, please post an issue.
Contributing
Contributions are more than welcome. Ensure you read through the contributing guidelines before submitting a pull request.