(list)
| 628 | } |
| 629 | |
| 630 | function filesFromInputList(list) { |
| 631 | return Array.from(list || []).map((file) => ({ |
| 632 | file, |
| 633 | relativePath: file.webkitRelativePath || file.name |
| 634 | })); |
| 635 | } |
| 636 | |
| 637 | function readAllDirectoryEntries(reader) { |
| 638 | return new Promise((resolve) => { |
no outgoing calls
no test coverage detected