UNPKG

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

9 lines (8 loc) 278 B
/** * 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 } from './TarExtract.js';