(tasks)
| 147 | ].join('\n'); |
| 148 | } |
| 149 | |
| 150 | function buildTaskMap(tasks) { |
| 151 | const map = new Map(); |
| 152 | for (const task of tasks) map.set(taskId(task), task); |
| 153 | return map; |
| 154 | } |
| 155 | |
| 156 | function dependencyStatus(task, taskMap) { |
no test coverage detected