Skip to content

Instantly share code, notes, and snippets.

@alaawahbah
Created July 30, 2023 07:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save alaawahbah/199f18c146a72040de048054c42c659e to your computer and use it in GitHub Desktop.
Save alaawahbah/199f18c146a72040de048054c42c659e to your computer and use it in GitHub Desktop.
const convertToKababCase = (str) => {
if (!str)
return ''
return str.replace(/([a-z])([A-Z])/g, "$1-$2").replace(/[\s_]+/g, '-').toLowerCase().replace('"', '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment