(str)
| 185 | var hyphenateRE = /([a-z\d])([A-Z])/g; |
| 186 | |
| 187 | function hyphenate(str) { |
| 188 | return str.replace(hyphenateRE, '$1-$2').toLowerCase(); |
| 189 | } |
| 190 | |
| 191 | /** |
| 192 | * Converts hyphen/underscore/slash delimitered names into |
no outgoing calls
no test coverage detected