DenReg/tar
Fabian Stamm a436a4ecb0
All checks were successful
continuous-integration/drone/push Build is passing
Fix bug with wrong paths in windows
2020-08-16 11:39:11 +02:00
..
demo
src Fix bug with wrong paths in windows 2020-08-16 11:39:11 +02:00
.gitignore
dev.sh
meta.json Fix bug with wrong paths in windows 2020-08-16 11:39:11 +02:00
mod.ts
README.md switching back to deno std tar 2020-08-02 23:37:16 +02:00

Helper functions for packing and unpacking tarfiles.

Usage

import { Tar } from "https://deno.hibas123.de/raw/@denreg-tar";

// The first parameter can be a file or a folder
await Tar.compress("test.txt", "test.tar");
await Tar.decompress("test.tar", ".");