Skip to content

Instantly share code, notes, and snippets.

@smitroshin
Created June 26, 2023 14:30
Show Gist options
  • Save smitroshin/a8d008562cbe68f09429525d5ed9fee9 to your computer and use it in GitHub Desktop.
Save smitroshin/a8d008562cbe68f09429525d5ed9fee9 to your computer and use it in GitHub Desktop.
Convert a text to kebab-case format
/**
* Convert a text to kebab-case format
*/
export const toKebabCase = (text: string) =>
text
.trim()
.replace(/([a-z])([A-Z])/g, "$1-$2") // insert dash between lowercase and uppercase letters
.replace(/\s+/g, "-") // replace spaces with dashes
.toLowerCase(); // convert all characters to lowercase
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment