Skip to content

Instantly share code, notes, and snippets.

@petersandor
Last active August 29, 2015 14:27
Show Gist options
  • Save petersandor/47a6694f40bebfa9ad5d to your computer and use it in GitHub Desktop.
Save petersandor/47a6694f40bebfa9ad5d to your computer and use it in GitHub Desktop.
Spinal tap
function replacer(match) {
if(match.length === 2) {
return match.split('').join('-');
} else {
return '-';
}
}
function spinalCase(str) {
return str.replace(/[_ ]|[a-z][A-Z]/g, replacer).toLowerCase();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment