Generates the complete zip file with the internal stream implementation.
Returns : a StreamHelper.
Since: v3.0.0
name | type | default | description |
---|---|---|---|
options | object | the options to generate the zip file, see the options of generateAsync() |
Metadata : see the metadata of generateAsync()
.
zip
.generateInternalStream({type:"uint8array"})
.accumulate()
.then(function (data) {
// data contains here the complete zip file as a uint8array (the type asked in generateInternalStream)
});