(filename)
| 200 | } |
| 201 | |
| 202 | const listZipFiles = async function (filename) { |
| 203 | const file = await readFile(filename) |
| 204 | const zip = await new JSZip().loadAsync(file) |
| 205 | return Object.keys(zip.files) |
| 206 | } |
| 207 | |
| 208 | const listZipFilesWithMetaData = async function (filename) { |
| 209 | const file = await readFile(filename) |