zip-iterator
Version:
Extract contents from zip archive type using an iterator API using streams or paths. Use stream interface and pipe transforms to add decompression algorithms
13 lines (12 loc) • 411 B
text/typescript
/**
* ZIP Parser Module
*
* Forward-only ZIP parsing for streaming extraction.
*/
export { BufferList, crc32, crc32Region, verifyCrc32, verifyCrc32Region } from 'extract-base-iterator';
export * from './CentralDirectory.js';
export * from './constants.js';
export * from './cp437.js';
export * from './extra-fields.js';
export * from './headers.js';
export { default as ZipExtract } from './ZipExtract.js';