(value)
| 1510 | } |
| 1511 | |
| 1512 | function escapeHtml(value) { |
| 1513 | return String(value) |
| 1514 | .replaceAll("&", "&") |
| 1515 | .replaceAll("<", "<") |
| 1516 | .replaceAll(">", ">") |
| 1517 | .replaceAll('"', """) |
| 1518 | .replaceAll("'", "'"); |
| 1519 | } |
| 1520 | |
| 1521 | init().catch(handleError); |
no outgoing calls
no test coverage detected