()
| 6642 | } |
| 6643 | |
| 6644 | async init() { |
| 6645 | const zipBlobReader = this; |
| 6646 | zipBlobReader.size = zipBlobReader.entry.uncompressedSize; |
| 6647 | const data = await zipBlobReader.entry.getData(new BlobWriter(), Object.assign({}, zipBlobReader.options, options)); |
| 6648 | zipBlobReader.data = data; |
| 6649 | zipBlobReader.blobReader = new BlobReader(data); |
| 6650 | super.init(); |
| 6651 | } |
| 6652 | |
| 6653 | readUint8Array(index, length) { |
| 6654 | return this.blobReader.readUint8Array(index, length); |