DenReg/tar/README.md

12 lines
279 B
Markdown
Raw Normal View History

2020-07-31 17:35:18 +00:00
Helper functions for packing and unpacking tarfiles.
## Usage
```typescript
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", ".");
```