(value)
| 1366 | } |
| 1367 | |
| 1368 | function escapeHtml(value) { |
| 1369 | return String(value || "") |
| 1370 | .replaceAll("&", "&") |
| 1371 | .replaceAll("<", "<") |
| 1372 | .replaceAll(">", ">") |
| 1373 | .replaceAll('"', """) |
| 1374 | .replaceAll("'", "'"); |
| 1375 | } |
| 1376 | |
| 1377 | function bindEvents() { |
| 1378 | document.querySelectorAll(".nav-item").forEach((item) => { |
no outgoing calls
no test coverage detected