Skip to content

Instantly share code, notes, and snippets.

@black-black-cat
Created May 9, 2018 08:55
Show Gist options
  • Save black-black-cat/aa8d513220b368f6bab242df959f8181 to your computer and use it in GitHub Desktop.
Save black-black-cat/aa8d513220b368f6bab242df959f8181 to your computer and use it in GitHub Desktop.
toCamel and toKebab
function toCamel (s) { return s.replace(/-(\w)/g, (m, c) => c.toUpperCase()) }
function toKebab (s) { return s.replace(/([A-Z])(?=[^A-Z]+?)|([A-Z]+?)((?=[A-Z][^A-Z])|$)/g, (m, c, cc) => '-' + (c || cc||'').toLowerCase()) }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment