Skip to content

Instantly share code, notes, and snippets.

@lior-amsalem
Created October 17, 2021 19:00
Show Gist options
  • Save lior-amsalem/be7d1dda62a761291c368634035e0938 to your computer and use it in GitHub Desktop.
Save lior-amsalem/be7d1dda62a761291c368634035e0938 to your computer and use it in GitHub Desktop.
convert string to camelCase
/**
Examples
"the-stealth-warrior" gets converted to "theStealthWarrior"
"The_Stealth_Warrior" gets converted to "TheStealthWarrior"
**/
function toCamelCase(str){
return str.replace(/[-_][a-zA-Z]/g, (i) => i.replace(/[-_]/g,'').toUpperCase());
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment