* @param {string} str * @return {string}
(str)
| 36 | * @return {string} |
| 37 | */ |
| 38 | function camelizeDashes(str) { |
| 39 | return str.replace(/-+(\w)/g, (m, letter) => letter.toUpperCase()); |
| 40 | } |
| 41 | |
| 42 | /** |
| 43 | * @param {object} tokens |
no outgoing calls
no test coverage detected
searching dependent graphs…