Skip to content

Instantly share code, notes, and snippets.

@simplyspoke
Created September 11, 2018 20:36
Show Gist options
  • Save simplyspoke/3fbc69e64a4648929da8d8c719d124f9 to your computer and use it in GitHub Desktop.
Save simplyspoke/3fbc69e64a4648929da8d8c719d124f9 to your computer and use it in GitHub Desktop.
camelCase to _CapCase
const value = 'SomeThingHere'
.replace('Command', '')
.replace(/([A-Z])/g, c => {
console.log(c)
return `_${c}`;
})
.replace(/^\w/, c => c.toUpperCase());
console.log(value);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment