(value: string)
| 137 | }; |
| 138 | |
| 139 | const xmlEscape = (value: string): string => |
| 140 | value |
| 141 | .replaceAll("&", "&") |
| 142 | .replaceAll("<", "<") |
| 143 | .replaceAll(">", ">") |
| 144 | .replaceAll('"', """) |
| 145 | .replaceAll("'", "'"); |
| 146 | |
| 147 | const xmlUnescape = (value: string): string => |
| 148 | value |
no outgoing calls
no test coverage detected