@obsidize/tar-browserify
    Preparing search index...

    Interface AsyncUint8ArrayBlock

    Read result when AsyncUint8ArrayIterator.next() succeeds.

    interface AsyncUint8ArrayBlock {
        buffer: Uint8Array;
        offset: number;
        source: AsyncUint8ArrayLike;
    }
    Index

    Properties

    Properties

    buffer: Uint8Array

    The value read from source

    offset: number

    The absolute offset in source that buffer was read from. This will be in range [0, source.byteLength]

    The input object that has provided the data from some external mechanism