(entry: TaskFilterIndexEntry)
| 535 | } |
| 536 | |
| 537 | private withFilterIndexSignature(entry: TaskFilterIndexEntry): TaskFilterIndexEntry { |
| 538 | return { |
| 539 | ...entry, |
| 540 | signature: JSON.stringify({ |
| 541 | contexts: entry.contexts, |
| 542 | dueDate: entry.dueDate, |
| 543 | isCompleted: entry.isCompleted, |
| 544 | priority: entry.priority, |
| 545 | projects: entry.projects, |
| 546 | scheduledDate: entry.scheduledDate, |
| 547 | status: entry.status, |
| 548 | tags: entry.tags, |
| 549 | timeEstimate: entry.timeEstimate, |
| 550 | }), |
| 551 | }; |
| 552 | } |
| 553 | |
| 554 | private normalizeDateValue(value: unknown): string | undefined { |
| 555 | if (typeof value !== "string" || value.length === 0) { |
no outgoing calls
no test coverage detected