DenReg/tar
Fabian Stamm a436a4ecb0
continuous-integration/drone/push Build is passing Details
Fix bug with wrong paths in windows
2020-08-16 11:39:11 +02:00
..
demo First commit containing tar package 2020-07-26 13:18:06 +02:00
src Fix bug with wrong paths in windows 2020-08-16 11:39:11 +02:00
.gitignore First commit containing tar package 2020-07-26 13:18:06 +02:00
README.md switching back to deno std tar 2020-08-02 23:37:16 +02:00
dev.sh Add jsdoc annotations to public interface 2020-07-28 19:41:57 +02:00
meta.json Fix bug with wrong paths in windows 2020-08-16 11:39:11 +02:00
mod.ts Changing export to Namepace Tar 2020-07-26 13:20:17 +02:00

README.md

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", ".");