function spinalCase(str) { for ( var i = 0; i < str.length; i++) { if ( i == 0 && /[A-Z]/.test(str[i]) ) { str.replace(str[i], s