Created
July 22, 2015 20:37
-
-
Save alan2207/604b37ced5e00c604f50 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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