Skip to content

Instantly share code, notes, and snippets.

@itsmikita
Created July 28, 2023 11:43
Show Gist options
  • Save itsmikita/8c1c96cffcfc925514b74c8ca9d8360c to your computer and use it in GitHub Desktop.
Save itsmikita/8c1c96cffcfc925514b74c8ca9d8360c to your computer and use it in GitHub Desktop.
Convert CamelCase (or AnyCase) to kebab-case.
const kebaptize = ( t ) => t.split( "" ).map( ( c, x ) => c === c.toUpperCase() ? `${ x != 0 ? "-" : "" }${ c.toLowerCase() }` : c ).join( "" );
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment