( str )
| 36 | str.replace( /["'.,\/#!$%\^&\*;:’{}=_`~()]/g, '' ); |
| 37 | |
| 38 | const dashCase = ( str ) => stripPunctuation( str ).toLowerCase().split( ' ' ).filter( |
| 39 | ( word ) => word !== '' |
| 40 | ).join( '-' ); |
| 41 | |
| 42 | const reverseDashCase= (str) => str.split('-').map( |
| 43 | word => word.replace( |
no test coverage detected