0.0.2 • Published 1 year ago

@alexvyber/convert-case v0.0.2

Weekly downloads
-
License
MIT
Repository
github
Last release
1 year ago

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