(value: string)
| 1 | |
| 2 | |
| 3 | const escapeXmlText = (value: string): string => |
| 4 | value |
| 5 | .replaceAll('&', '&') |
| 6 | .replaceAll('<', '<') |
| 7 | .replaceAll('>', '>') |
| 8 | .replaceAll('"', '"') |
| 9 | .replaceAll("'", '''); |
| 10 | |
| 11 | export interface BuildScheduledTaskXmlInput { |
| 12 | description: string; |
no outgoing calls
no test coverage detected