Skip to content

Instantly share code, notes, and snippets.

@alan2207
Created July 22, 2015 20:37
Show Gist options
  • Save alan2207/604b37ced5e00c604f50 to your computer and use it in GitHub Desktop.
Save alan2207/604b37ced5e00c604f50 to your computer and use it in GitHub Desktop.
function spinalCase(str) {
str = str.replace(/[\s_]/g,"-")
str = str.toLowerCase()
return str;
}
spinalCase('This Is Spinal Tap');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment