Text after the checkbox (content + any tokens) — prefill for inline edit.
(task: VaultTask)
| 70 | |
| 71 | /** Text after the checkbox (content + any tokens) — prefill for inline edit. */ |
| 72 | function taskTail(task: VaultTask): string { |
| 73 | const m = task.rawText.match(TASK_PREFIX_RE) |
| 74 | return m ? task.rawText.slice(m[0].length) : task.content |
| 75 | } |
| 76 | |
| 77 | function buildMonthGrid(anchor: Date, firstDay: number): Date[] { |
| 78 | const first = firstOfMonth(anchor) |
no outgoing calls
no test coverage detected