Home

Awesome

Case anything 🐫

<a href="https://www.npmjs.com/package/case-anything"><img src="https://img.shields.io/npm/v/case-anything.svg" alt="Total Downloads"></a> <a href="https://www.npmjs.com/package/case-anything"><img src="https://img.shields.io/npm/dw/case-anything.svg" alt="Latest Stable Version"></a>

npm i case-anything

14 case changing functions: camelCase, kebab-case, PascalCase and more...<br /> A simple integration with nano package size. (SMALL footprint!)

Motivation

I created this package because most other packages that do simple case changing are so big...

<table> <tr> <td> <p>Some features I focused on:</p> <li>small footprint (it's <a href="#package-size">12+ times smaller</a> than the next popular case changing package!!)</li> <li>tree-shakable — only import what you need</li> <li>awesome JSDocs popup documentation on hover</li> <li>fully typed with TypeScript</li> <li>complete coverage with unit testing</li> <li>0 dependencies</li> </td> <td> <p>Case anything is used in...</p> <li>Famous Mac app <a href="https://pilotmoon.com/popclip">Popclip 💊</a></li> <li>State Management Library <a href="https://github.com/cycraft/magnetar">Magnetar 🌟</a></li> <li>Vue Form Generator <a href="https://github.com/cycraft/blitzar">Blitzar ⚡️</a></li> <li><a href="https://github.com/apideck-libraries/portman">Lottie-player ∫</a></li> <li>OpenAPI CLI <a href="https://github.com/apideck-libraries/portman">Portman 👨🏽‍🚀</a></li> <li>and <a href="https://github.com/mesqueeb/case-anything/network/dependents">100s more</a>...</li> </td> </tr> </table>

Usage

case-anything supports tree-shaking and is side-effect free!

// just import the functions you need like so:
import { camelCase, kebabCase } from 'case-anything'

case-anything has different behaviour if the string you pass has spaces or not.

Strings without spaces

NameInput exampleOutput example
🐪 camelCasecamelCase('$catDog')catDog
🐫 PascalCase<br />UpperCamelCasepascalCase('$catDog')<br />upperCamelCase('$catDog')CatDog
🥙 kebab-casekebabCase('$catDog')cat-dog
🐍 snake_casesnakeCase('$catDog')cat_dog
📣 CONSTANT_CASEconstantCase('$catDog')CAT_DOG
🚂 Train-CasetrainCase('$catDog')Cat-Dog
🕊 Ada_CaseadaCase('$catDog')Cat_Dog
👔 COBOL-CASEcobolCase('$catDog')CAT-DOG
📍 Dot.notationdotNotation('$catDog')cat.Dog
📂 Path/casepathCase('$catDog')$cat/Dog
🛰 Space casespaceCase('$catDog')$cat Dog
🏛 Capital CasecapitalCase('$catDog')$Cat Dog
🔡 lower caselowerCase('$catDog')$cat dog
🔠 UPPER CASEupperCase('$catDog')$CAT DOG

Special Characters

You can see that most functions by default remove special characters, and some functions keep special characters.

<table> <tr> <th>functions that <i>remove</i> special characters*</th> <th>functions that <i>keep</i> special characters*</th> </tr> <tr> <td> <li>camelCase</li> <li>pascalCase</li> <li>kebabCase</li> <li>snakeCase</li> <li>constantCase</li> <li>trainCase</li> <li>adaCase</li> <li>cobolCase</li> <li>dotNotation</li> </td> <td> <li>pathCase</li> <li>spaceCase</li> <li>capitalCase</li> <li>lowerCase</li> <li>upperCase</li> </td> </tr> </table>

*You can control wether or not to keep or remove special characters like so:

// default:
camelCase('$catDog') === 'catDog'
// force keeping special characters:
camelCase('$catDog', { keepSpecialCharacters: true }) === '$catDog'

// default:
pathCase('$catDog') === '$cat/Dog'
// force removing special characters:
pathCase('$catDog', { keepSpecialCharacters: false }) === 'cat/Dog'

Case Changing

These cases do not change the casing of the words:

// default:
dotNotation('$catDog') === 'cat.Dog'
// force lower case:
dotNotation('$catDog').toLowerCase() === 'cat.dog'

Strings with spaces

As soon as there is a space in the target string, it will regard the input as a sentence and only split each part at the spaces.

NameInput exampleOutput example
🐪 camelCasecamelCase("I'm O.K.!")imOk
🐫 PascalCase<br />UpperCamelCasepascalCase("I'm O.K.!")<br />upperCamelCase("I'm O.K.!")ImOk
🥙 kebab-casekebabCase("I'm O.K.!")im-ok
🐍 snake_casesnakeCase("I'm O.K.!")im_ok
📣 CONSTANT_CASEconstantCase("I'm O.K.!")IM_OK
🚂 Train-CasetrainCase("I'm O.K.!")Im-Ok
🕊 Ada_CaseadaCase("I'm O.K.!")Im_Ok
👔 COBOL-CASEcobolCase("I'm O.K.!")IM-OK
📍 Dot.notationdotNotation("I'm O.K.!")Im.OK
📂 Path/casepathCase("I'm O.K.!")I'm/O.K.!
🛰 Space casespaceCase("I'm O.K.!")I'm O.K.!
🏛 Capital CasecapitalCase("I'm O.K.!")I'm O.k.!
🔡 lower caselowerCase("I'm O.K.!")i'm o.k.!
🔠 UPPER CASEupperCase("I'm O.K.!")I'M O.K.!

Also note, that multiple sequential spaces are treated as one space.

Keep only certain special characters

Instead of removing all special characters, you can opt to keep some special characters.

In the example below we see:

pascalCase('$cat-dog', { keepSpecialCharacters: false })
// CatDog   → not what we want

pascalCase('$cat-dog', { keepSpecialCharacters: true })
// $Cat-Dog → not what we want

pascalCase('$cat-dog', { keep: ['$'] })
// $CatDog  → desired output

Convert special characters into alphabet

I have extended regular alphabet with the most common Latin-1 Supplement special characters.

The coolest thing about this library is that it will "convert" special characters into regular alphabet for the cases used as variable names! 😎

<!-- prettier-ignore-start -->
// CONVERTS special characters:
camelCase('Çâfé Ågård')    === 'cafeAgard'
pascalCase('Çâfé Ågård')   === 'CafeAgard'
kebabCase('Çâfé Ågård')    === 'cafe-agard'
snakeCase('Çâfé Ågård')    === 'cafe_agard'
constantCase('Çâfé Ågård') === 'CAFE_AGARD'
trainCase('Çâfé Ågård')    === 'Cafe-Agard'
adaCase('Çâfé Ågård')      === 'Cafe_Agard'
cobolCase('Çâfé Ågård')    === 'CAFE-AGARD'
dotNotation('Çâfé Ågård')  === 'Cafe.Agard'

// DOES NOT convert special characters:
spaceCase('Çâfé Ågård')    === 'Çâfé Ågård'
pathCase('Çâfé Ågård')     === 'Çâfé/Ågård'
lowerCase('Çâfé Ågård')    === 'çâfé ågård'
upperCase('Çâfé Ågård')    === 'ÇÂFÉ ÅGÅRD'
capitalCase('Çâfé Ågård')  === 'Çâfé Ågård'
<!-- prettier-ignore-end -->

JSDocs

I have made sure there is great documentation available on hover!

jsdocs preview

Keyboard shortcuts

With Better Touch Tool you can set up keyboard shortcuts to convert selected text with JavaScript. This repo provides an easy to install preset that has shortcuts for pascal, kebab and camel case! (thanks to @AndrewKoch) It even supports multi-cursors in VSCode!

Here is an example triggering keyboard shortcuts to convert the selected text to PascalCase; kebab-case; camelCase:

keyboard shortcuts example

You can download the BTT preset from the source code: case-anything.bttpreset.

Package size

We'll compare this package with blakeembrey/change-case, a very famous package on npm.

case-anythingchange-case
camelCase1.1K (572)27.2K (6K)
pascalCase1.1K (561)27.4K (6.1K)
kebabCase1.1K (541)26.8K (5.9K)
snakeCase1.1K (540)26.8K (5.9K)
constantCase1.1K (540)27.2K (6K)
pathCase1K (530)26.8K (5.9K)

Source code

What keeps my package small, is that literally just uses a regex to separate "words".

// the source code is similar to:
export function splitOnSpecialChars(string: string): any[] {
  return string.match(/^[a-z]+|[A-Z][a-z]+|[a-z]+|[0-9]+|[A-Z]+(?![a-z])/g)
}

The actual regex used is a little bit more comprehensive and can be found here.

Meet the family (more tiny utils with TS support)