tar-iterator
Version:
Extract contents from tar archive type using an iterator API using streams or paths. Use stream interface and pipe transforms to add decompression algorithms
10 lines (9 loc) • 302 B
TypeScript
/**
* Pure TAR Parser Module
*
* Node 0.8+ compatible TAR extraction without external dependencies.
*/
export { BufferList } from 'extract-base-iterator';
export * from './constants.js';
export * from './headers.js';
export { default as TarExtract, type TarExtractOptions } from './TarExtract.js';