tar-xz - v6.1.1
    Preparing search index...

    Type Alias TarInput

    TarInput:
        | AsyncIterable<Uint8Array>
        | Iterable<Uint8Array>
        | Uint8Array
        | ArrayBuffer
        | ReadableStream<Uint8Array>

    Any stream/buffer type accepted by extract() and list() as input.

    Note: NodeJS.ReadableStream is handled transparently in the Node.js implementation via the internal toAsyncIterable helper. In browsers, pass a ReadableStream<Uint8Array> (Web Streams API) instead.