Skip to content

alexvyber/convert-case

Repository files navigation

Case Convert

Package for converting string cases

Install

npm install @alexvyber/convert-case
pnpm add @alexvyber/convert-case
yarn add @alexvyber/convert-case

Example

import { camelToKebab, kebabToCamel } from "@alexvyber/convert-case"

console.log(camelToKebab("SomeString")) // => some-string
console.log(camelToKebab("otherString")) // => other-string

console.log(kebabToCamel("some-string")) // => SomeString
console.log(kebabToCamel("other-string")) // => OtherString

API

Table of Contents

camelToKebab

Converts a string from CamelCase to kebab-case.

Parameters

  • input T The string in CamelCase to be converted

Examples

camelToKebab("SomeString") // "some-string"

Returns Kebabtize The string in kebab-case

kebabToCamel

Converts a string from kebab-case to CamelCase.

Parameters

  • input T The string in kebab-case to be converted

Examples

kebabToCamel("some-string") // "SomeString"

Returns Camelize The string in CamelCase

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published