(text: string)
| 79 | // ── C# utilities ──────────────────────────────────────────────────────────── |
| 80 | |
| 81 | function escapeXml(text: string): string { |
| 82 | return text.replace(/&/g, "&").replace(/</g, "<").replace(/>/g, ">"); |
| 83 | } |
| 84 | |
| 85 | function escapeXmlAttribute(text: string): string { |
| 86 | return escapeXml(text).replace(/"/g, """).replace(/'/g, "'"); |
no outgoing calls
no test coverage detected
searching dependent graphs…