Skip to content

Instantly share code, notes, and snippets.

@avilde
Created November 2, 2019 16:41
Show Gist options
  • Save avilde/d62d0419f8b9e23446b01cba622e518e to your computer and use it in GitHub Desktop.
Save avilde/d62d0419f8b9e23446b01cba622e518e to your computer and use it in GitHub Desktop.
Convert text from camel to kebab case.
export const camelToKebabCase = (text: string) => {
return text.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