(value)
| 1 | function escapeHtml(value) { |
| 2 | return String(value) |
| 3 | .replaceAll("&", "&") |
| 4 | .replaceAll("<", "<") |
| 5 | .replaceAll(">", ">") |
| 6 | .replaceAll("\"", """); |
| 7 | } |
| 8 | |
| 9 | function renderList(items) { |
| 10 | if (items.length === 0) { |
no outgoing calls
no test coverage detected