A zippable archive to which files can incrementally be added
+ new Zip(): Zip
Creates an empty ZIP archive to which files can be added
Returns: Zip
• ondata: AsyncFlateStreamHandler
The handler to call whenever data is available
▸ add(file
: ZipInputFile): void
Adds a file to the ZIP archive
Name | Type | Description |
---|---|---|
file |
ZipInputFile | The file stream to add |
Returns: void
▸ end(): void
Ends the process of adding files and prepares to emit the final chunks. This must be called after adding all desired files for the resulting ZIP file to work properly.
Returns: void
▸ terminate(): void
A method to terminate any internal workers used by the stream. Subsequent calls to add() will silently fail.
Returns: void