(file, i)
| 783 | } |
| 784 | |
| 785 | async function readFile(file, i) { |
| 786 | console.log(`Event %o reading file[${i}]:${file.name}...`) |
| 787 | const fileContent = (await file.text()).trim() |
| 788 | return await parseContent(fileContent) |
| 789 | } |
| 790 | |
| 791 | function dropHandler(ev) { |
| 792 | console.log("Content dropped...") |
nothing calls this directly
no test coverage detected