Code Monkey home page Code Monkey logo

case-convert's Introduction

case-convert

Utility functions to determine and convert the case of strings.

Usage

import { toCamelCase } from 'case-convert'

const result = toCamelCase('a-new-hope')    //  aNewHope

API Reference

Case

export enum Case {
    Camel = 'CAMEL',    //  camelCase
    Snake = 'SNAKE',    //  snake_case
    Kebab = 'KEBAB',    //  kebab-case
    Title = 'TITLE',    //  TitleCase
}

convert

Convert the string to the given case type

import { Case, convert } from 'case-convert'

const result = convert('a-new-hope', Case.Camel)    //  aNewHope

check

Check if the string is of the given case type

import { check, Case } from 'case-convert'

check('a-new-hope', Case.Camel)  //  false
check('a_new_hope', Case.Snake)  //  true

determineCase

Determine the case type of the string

import { determineCase } from 'case-convert'

const result = determineCase('ANewHope')    //  Case.Title = "TITLE"

capitalize and uncapitalize

Capitalize or uncapitalize a string

import { capitalize, uncapitalize } from 'case-convert'

capitalize('a new hope')    //  A new hope
uncapitalize('A New Hope')  //  a New Hope

toCamelCase, toSnakeCase, toKebabCase and toTitleCase

Convert the string to the given format

import { toCamelCase, toSnakeCase, toKebabCase, toTitleCase } from 'case-convert'

toCamelCase("some-string")  //  someString
toSnakeCase("someString")   //  some_string
toKebabCase("SomeString")   //  some-string
toTitleCase("some_string")  //  SomeString

๐Ÿ“‘ License

This project is licensed under the MIT License.

case-convert's People

Contributors

shresht7 avatar

Watchers

 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.