Skip to content

Instantly share code, notes, and snippets.

@velppa
Created January 21, 2019 22:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save velppa/21dad64c7171408befc39e58f04358cc to your computer and use it in GitHub Desktop.
Save velppa/21dad64c7171408befc39e58f04358cc to your computer and use it in GitHub Desktop.
snake meets camel
function snakeToCamel( s ) {
return s.replace(/(\_\w)/g, function(m){return m[1].toUpperCase();});
}
function camelToSnake( s ) {
return s.replace(/([a-z])([A-Z])/g, '$1_$2').toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment