(value: string)
| 268 | } |
| 269 | |
| 270 | function escapeXmlText(value: string): string { |
| 271 | return value |
| 272 | .replaceAll('&', '&') |
| 273 | .replaceAll('<', '<') |
| 274 | .replaceAll('>', '>') |
| 275 | .replaceAll('"', '"') |
| 276 | .replaceAll("'", '''); |
| 277 | } |
| 278 | |
| 279 | function isAndroidRunAsDeniedOutput(stdout: string, stderr: string): boolean { |
| 280 | const output = `${stdout}\n${stderr}`.toLowerCase(); |
no outgoing calls
no test coverage detected
searching dependent graphs…