()
| 248 | }; |
| 249 | |
| 250 | const getTotalCurrentBytes = () => |
| 251 | Array.from(taskLoadedBytes.values()).reduce((sum, bytes) => sum + bytes, 0); |
| 252 | |
| 253 | const tasksWithProgress = tasks.map((task, index) => async () => { |
| 254 | const fileNumber = index + 1; |
no test coverage detected