Skip to content

Instantly share code, notes, and snippets.

@iksi
Created November 17, 2020 21:43
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 iksi/9670dcb70cd7309cf3dfa5f677a0556a to your computer and use it in GitHub Desktop.
Save iksi/9670dcb70cd7309cf3dfa5f677a0556a to your computer and use it in GitHub Desktop.
export const camelCaseToKebabCase = (string) => {
return string.replace(/([a-z0-9]|(?=[A-Z]))([A-Z])/g, '$1-$2').toLowerCase();
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment