UNPKG

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

8 lines (7 loc) 289 B
/** * Compression Handlers for ZIP extraction * * Provides abstractions for DEFLATE and STORE compression methods. */ export { DeflateBufferHandler } from './DeflateBuffer.js'; export { DeflateStreamHandler } from './DeflateStream.js'; export { StoreHandler } from './StoreStream.js';