* An entry in the zip file. * @constructor * @param {Object} options Options of the current file. * @param {Object} loadOptions Options for loading the stream.
(options, loadOptions)
| 14517 | * @param {Object} loadOptions Options for loading the stream. |
| 14518 | */ |
| 14519 | function ZipEntry(options, loadOptions) { |
| 14520 | this.options = options; |
| 14521 | this.loadOptions = loadOptions; |
| 14522 | } |
| 14523 | ZipEntry.prototype = { |
| 14524 | /** |
| 14525 | * say if the file is encrypted. |
nothing calls this directly
no outgoing calls
no test coverage detected