(target: string)
| 389 | * @returns true if the target is reserved (any case variant of "xml") |
| 390 | */ |
| 391 | export function isReservedPiTarget(target: string): boolean { |
| 392 | return target.length === 3 && target.toLowerCase() === "xml"; |
| 393 | } |
| 394 | |
| 395 | // ============================================================================= |
| 396 | // NAMESPACE VALIDATION (XML Namespaces 1.0) |
no outgoing calls
no test coverage detected