(taskListId: string)
| 108 | } |
| 109 | |
| 110 | function getHighWaterMarkPath(taskListId: string): string { |
| 111 | return join(getTasksDir(taskListId), HIGH_WATER_MARK_FILE) |
| 112 | } |
| 113 | |
| 114 | async function readHighWaterMark(taskListId: string): Promise<number> { |
| 115 | const path = getHighWaterMarkPath(taskListId) |
no test coverage detected