(value: string)
| 1 | export function escapeHtml(value: string) { |
| 2 | return value |
| 3 | .replaceAll("&", "&") |
| 4 | .replaceAll("<", "<") |
| 5 | .replaceAll(">", ">") |
| 6 | .replaceAll('"', """) |
| 7 | .replaceAll("'", "'") |
| 8 | } |
no outgoing calls
no test coverage detected