Skip to content

Instantly share code, notes, and snippets.

@thevangelist
Created September 21, 2016 10:11
Show Gist options
  • Star 19 You must be signed in to star a gist
  • Fork 2 You must be signed in to fork a gist
  • Save thevangelist/8ff91bac947018c9f3bfaad6487fa149 to your computer and use it in GitHub Desktop.
Save thevangelist/8ff91bac947018c9f3bfaad6487fa149 to your computer and use it in GitHub Desktop.
JS: convert to kebab-case
const convertToKebabCase = (string) => {
return string.replace(/\s+/g, '-').toLowerCase();
}
@tehpsalmist
Copy link

@oravecz That's a shame! Do you think you have a fix handy?

@Vadorequest
Copy link

Vadorequest commented Jun 6, 2020

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment