Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save ArielMejiaDev/fec5e4e63517a6a0c0c9081a2a7c5cad to your computer and use it in GitHub Desktop.
Save ArielMejiaDev/fec5e4e63517a6a0c0c9081a2a7c5cad to your computer and use it in GitHub Desktop.
JS: convert to kebab-case
const convertToKebabCase = (string) => {
return string.replace(/\s+/g, '-').toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment