(task: TaskInfo)
| 3430 | } |
| 3431 | |
| 3432 | function getActiveTimeEntryCount(task: TaskInfo): number { |
| 3433 | return (task.timeEntries ?? []).filter((entry) => !entry.endTime).length; |
| 3434 | } |
| 3435 | |
| 3436 | function hasNewArrayValue(before: string[] | undefined, after: string[] | undefined): boolean { |
| 3437 | const beforeValues = new Set(before ?? []); |
no outgoing calls
no test coverage detected