(str: string)
| 20 | } |
| 21 | |
| 22 | function kebabToCamel(str: string) { |
| 23 | return str |
| 24 | .toLowerCase() |
| 25 | .replace(/([-_][a-z])/g, (group) => group.toUpperCase().replace('-', '').replace('_', '')); |
| 26 | } |
| 27 | |
| 28 | function renderExample(example: QwikEslintExample, state: 'good' | 'bad' = 'good') { |
| 29 | mdx.push('<div class="code-wrapper">'); |
no outgoing calls
no test coverage detected
searching dependent graphs…