Skip to content

Instantly share code, notes, and snippets.

@colmjude
Created November 25, 2020 16:05
Show Gist options
  • Save colmjude/25c0170399d4b9a4673c32d1c0908b63 to your computer and use it in GitHub Desktop.
Save colmjude/25c0170399d4b9a4673c32d1c0908b63 to your computer and use it in GitHub Desktop.
Javascript function to convert strings to camel case strings
function camelCaseReplacer(match, s) {
return s.toUpperCase()
}
function toCamelCase(s) {
return s.toLowerCase().replace(/[^a-zA-Z0-9]+(.)/g, camelCaseReplacer)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment