Thin wrapper around yauzl.
function openZip(zipPath: string): AsyncIterable<ZipEntry>;
Opens a zip file as an async iterable of zip entries.
Represents an entry in a zip file.
interface ZipEntry {
info: yauzl.Entry;
open(): PromiseLike<stream.Readable>;
}
Get info about the zip entry. See the yazl docs for more info.
Get a readable stream for the contents of the entry.
Implements an object-mode readable stream which will read all of the entries in a zip file.
class ZipEntryStream extends stream.Readable