extract event is never triggered when using zip.extract on a full archive
Reproduce with
const zip = new StreamZip.async({ file: path });
extractedFilesCount = await zip.extract(null, './data');
zip.on('extract', (entry, file) => {
console.log(`Extracted ${entry.name} to ${file}`);
});
await zip.close();