(htmlStr: string)
| 11 | ); |
| 12 | |
| 13 | function escapeHtml(htmlStr: string) { |
| 14 | return htmlStr |
| 15 | .replace(/&/g, '&') |
| 16 | .replace(/</g, '<') |
| 17 | .replace(/>/g, '>') |
| 18 | .replace(/"/g, '"') |
| 19 | .replace(/'/g, '''); |
| 20 | } |
| 21 | |
| 22 | function kebabToCamel(str: string) { |
| 23 | return str |
no outgoing calls
no test coverage detected
searching dependent graphs…