class TarEntry
implements Reader
import { TarEntry } from "https://dotland.deno.dev/std@0.224.0/archive/mod.ts";
Contains tar header metadata and a reader to the entry's body.
Constructors
Methods
read(p: Uint8Array): Promise<number | null>
Reads up to p.byteLength
bytes of the tar entry into p
. It resolves to
the number of bytes read (0 < n <= p.byteLength
) and rejects if any
error encountered. Even if read() resolves to n < p.byteLength, it may use
all of p
as scratch space during the call. If some data is available but
not p.byteLength bytes
, read() conventionally resolves to what is available
instead of waiting for more.
interface TarEntry
implements TarMetaWithLinkName
import { type TarEntry } from "https://dotland.deno.dev/std@0.224.0/archive/mod.ts";
Tar entry