Skip to content

Instantly share code, notes, and snippets.

@xxzefgh
Created May 24, 2017 01:58
Show Gist options
  • Save xxzefgh/813d3ecf3bd7a9cec166d7a4dce6c9c0 to your computer and use it in GitHub Desktop.
Save xxzefgh/813d3ecf3bd7a9cec166d7a4dce6c9c0 to your computer and use it in GitHub Desktop.
export function snakeToCamel(str) {
return str.toLowerCase().replace(/_(.)/g, (match, $1) => $1.toUpperCase())
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment