(taskId: string, core?: Core | TaskPathContext)
| 381 | * Check if a task file exists |
| 382 | */ |
| 383 | export async function taskFileExists(taskId: string, core?: Core | TaskPathContext): Promise<boolean> { |
| 384 | const path = await getTaskPath(taskId, core); |
| 385 | return path !== null; |
| 386 | } |
no test coverage detected