Skip to content

Instantly share code, notes, and snippets.

@celsobessa
Created November 8, 2020 03:12
Show Gist options
  • Save celsobessa/c4841c860dec8e59f0f0d5bc81e311eb to your computer and use it in GitHub Desktop.
Save celsobessa/c4841c860dec8e59f0f0d5bc81e311eb to your computer and use it in GitHub Desktop.
Convert hyphens to camelCase
function camelize(str) {
const camelizeRE = /-(\w)/g;
return str.replace(camelizeRE, (_, c) => c ? c.toUpperCase() : '');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment