Skip to content

Instantly share code, notes, and snippets.

@neyasbltb88
Created June 8, 2020 11:19
Show Gist options
  • Save neyasbltb88/0bdd49b8f44961331de91eaed1023e3b to your computer and use it in GitHub Desktop.
Save neyasbltb88/0bdd49b8f44961331de91eaed1023e3b to your computer and use it in GitHub Desktop.
const kebabToCamel = string => string.replace(/-./g, x => x.toUpperCase()[1]);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment