MCPcopy Create free account
hub / github.com/TruthHun/BookStack / ZipEntries

Function ZipEntries

static/word2md/mammoth.browser.js:14296–14302  ·  view source on GitHub ↗

* 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)

Source from the content-addressed store, hash-verified

14294 * @param {Object} loadOptions Options for loading the stream.
14295 */
14296function ZipEntries(data, loadOptions) {
14297 this.files = [];
14298 this.loadOptions = loadOptions;
14299 if (data) {
14300 this.load(data);
14301 }
14302}
14303ZipEntries.prototype = {
14304 /**
14305 * Check that the reader is on the speficied signature.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected