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

std/archive/untar.ts

The Deno Standard Library
Go to Latest
The Standard Library has been moved to JSR. See the blog post for details.
import * as mod from "https://deno.land/std@0.222.1/archive/untar.ts";

Classes

Contains tar header metadata and a reader to the entry's body.

Overview

A class to extract from a tar archive. Tar archives allow for storing multiple files in a single file (called an archive, or sometimes a tarball). These archives typically have the '.tar' extension.

Interfaces

Tar entry

Extend TarMeta with the linkName property so that readers can access symbolic link values without polluting the world of archive writers.

Type Aliases

Tar header with raw, unprocessed bytes as values.