Skip to main content
Deno 2 is finally here 🎉️
Learn more
Module

std/archive/mod.ts>TarEntry

Deno standard library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
class TarEntry
implements Reader
import { TarEntry } from "https://deno.land/std@0.191.0/archive/mod.ts";

Constructors

new
TarEntry(
meta: TarMeta,
header: TarHeader,
reader: Reader | (Reader & Deno.Seeker),
)

Properties

readonly
consumed: boolean

Methods

read(p: Uint8Array): Promise<number | null>
interface TarEntry
implements TarMeta
import { type TarEntry } from "https://deno.land/std@0.191.0/archive/mod.ts";