(fileName: string)
| 317 | private readonly entriesMap = new Map<string, yauzl.Entry>() |
| 318 | |
| 319 | constructor(fileName: string) { |
| 320 | this.fileName = fileName |
| 321 | this.openedPromise = this.open() |
| 322 | } |
| 323 | |
| 324 | private async open(): Promise<void> { |
| 325 | this.zipFile = await new Promise<yauzl.ZipFile>((resolve, reject) => { |