Code Monkey home page Code Monkey logo

on-the-case's Introduction

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.

on-the-case's People

Contributors

andreamalvetta avatar danmad avatar dependabot[bot] avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.