(value: string | undefined)
| 494 | } |
| 495 | |
| 496 | private static normalizePriority(value: string | undefined): string | undefined { |
| 497 | if (!value) { |
| 498 | return undefined; |
| 499 | } |
| 500 | |
| 501 | const normalized = value.trim().toLowerCase(); |
| 502 | return PRIORITY_ALIASES[normalized] || normalized || undefined; |
| 503 | } |
| 504 | |
| 505 | private static parseRecurrence(recurrenceText: string | undefined): RecurrenceParseResult { |
| 506 | const raw = recurrenceText?.trim(); |
no outgoing calls
no test coverage detected