Socket
Socket
Sign inDemoInstall

case-anything

Package Overview
Dependencies
Maintainers
1
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

case-anything

camelCase, kebab-case, PascalCase... a simple integration with nano package size. (SMALL footprint!)


Version published
Weekly downloads
691K
decreased by-1.33%
Maintainers
1
Weekly downloads
 
Created
Source

Case anything 🐫

Total Downloads Latest Stable Version

npm i case-anything

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

Used by famous Mac app Popclip.

Motivation

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

Some features I focused on:

  • small footprint (it's 12+ times smaller than the next popular case changing package!!)
  • tree-shakable — only import what you need
  • awesome JSDocs popup documentation on hover
  • fully typed with TypeScript
  • complete coverage with unit testing
  • 0 dependencies

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.

  • Without spaces it will split and format on every "part" it can detect
  • With spaces it will split and format on every "word" based on those spaces

Strings without spaces

NameInput exampleOutput example
🐪 camelCasecamelCase('$catDog')catDog
🐫 PascalCase
UpperCamelCase
pascalCase('$catDog')
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.

functions that remove special characters*functions that keep special characters*
  • camelCase
  • pascalCase
  • kebabCase
  • snakeCase
  • constantCase
  • trainCase
  • adaCase
  • cobolCase
  • dotNotation
  • pathCase
  • spaceCase
  • capitalCase
  • lowerCase
  • upperCase
  • *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:

    • dotNotation
    • pathCase
    • spaceCase
    // 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
    UpperCamelCase
    pascalCase("I'm O.K.!")
    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.

    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! 😎

    // 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'
    

    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 (other utils)

    Keywords

    FAQs

    Package last updated on 04 Jan 2022

    Did you know?

    Socket

    Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

    Install

    Related posts

    SocketSocket SOC 2 Logo

    Product

    • Package Alerts
    • Integrations
    • Docs
    • Pricing
    • FAQ
    • Roadmap
    • Changelog

    Packages

    npm

    Stay in touch

    Get open source security insights delivered straight into your inbox.


    • Terms
    • Privacy
    • Security

    Made with ⚡️ by Socket Inc