Skip to content

Instantly share code, notes, and snippets.

@andrea-buzz
Last active June 3, 2025 13:03
Show Gist options
  • Save andrea-buzz/d34701f6a33f80659bff6c83489a6cd9 to your computer and use it in GitHub Desktop.
Save andrea-buzz/d34701f6a33f80659bff6c83489a6cd9 to your computer and use it in GitHub Desktop.
js toCamelCase function regex based
String.prototype.toCamelCase = function() {return this.replace(/[\s\._-]+\w/g, (m) => m[m.length-1].toUpperCase())}
function toCamelCase(str) {
return str.replace(/[\s\._-]+\w/g, (m) => m[m.length-1].toUpperCase());
}
@andrea-buzz
Copy link
Author

fixed some bugs

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment