(s: string)
| 123 | } |
| 124 | |
| 125 | function escapeHtml(s: string): string { |
| 126 | return s |
| 127 | .replace(/&/g, '&') |
| 128 | .replace(/</g, '<') |
| 129 | .replace(/>/g, '>') |
| 130 | .replace(/"/g, '"') |
| 131 | } |
| 132 | |
| 133 | const app = document.getElementById('app') |
| 134 | if (app) mount(app) |
no outgoing calls
no test coverage detected
searching dependent graphs…