(value: string)
| 513 | } |
| 514 | |
| 515 | function escapeHtml(value: string): string { |
| 516 | return value |
| 517 | .replaceAll("&", "&") |
| 518 | .replaceAll("<", "<") |
| 519 | .replaceAll(">", ">") |
| 520 | .replaceAll('"', """) |
| 521 | .replaceAll("'", "'"); |
| 522 | } |
no outgoing calls
no test coverage detected