(/** @type {string} */html)
| 63 | } |
| 64 | |
| 65 | function escapeHTML(/** @type {string} */html) { |
| 66 | return html |
| 67 | .replace(/&/g, '&') |
| 68 | .replace(/</g, '<') |
| 69 | .replace(/>/g, '>') |
| 70 | .replace(/"/g, '"') |
| 71 | .replace(/'/g, '''); |
| 72 | } |
| 73 | |
| 74 | /** @typedef {{name: string; length: number; coverage: number; parts: {text: string; covered: boolean}[]}} FileCoverageInfo */ |
| 75 |
no outgoing calls
no test coverage detected