* All the entries in the zip file. * @constructor * @param {String|ArrayBuffer|Uint8Array} data the binary stream to load. * @param {Object} loadOptions Options for loading the stream.
(data, loadOptions)
| 14294 | * @param {Object} loadOptions Options for loading the stream. |
| 14295 | */ |
| 14296 | function ZipEntries(data, loadOptions) { |
| 14297 | this.files = []; |
| 14298 | this.loadOptions = loadOptions; |
| 14299 | if (data) { |
| 14300 | this.load(data); |
| 14301 | } |
| 14302 | } |
| 14303 | ZipEntries.prototype = { |
| 14304 | /** |
| 14305 | * Check that the reader is on the speficied signature. |
nothing calls this directly
no outgoing calls
no test coverage detected