Skip to content

Instantly share code, notes, and snippets.

@izniburak
Created July 2, 2019 07:38
Show Gist options
  • Save izniburak/77f58e89ce0c2191f4b767e005f7f029 to your computer and use it in GitHub Desktop.
Save izniburak/77f58e89ce0c2191f4b767e005f7f029 to your computer and use it in GitHub Desktop.
module.exports = (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