Skip to content

Commit e18ddc9

Browse files
committed
update version
1 parent 19bd61a commit e18ddc9

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

+4-4
Original file line numberDiff line numberDiff line change
@@ -5,12 +5,12 @@ uncompress rar file for deno
55
* upcompress all
66
```js
77
// Simply get an instance of UnrarAll
8-
import unrar from "https://deno.land/x/unrar@v1.0.0/mod.ts";
8+
import unrar from "https://deno.land/x/unrar@v1.0.1/mod.ts";
99
// Equal to:
10-
import { UnrarAll } from "https://deno.land/x/unrar@v1.0.0/mod.ts";
10+
import { UnrarAll } from "https://deno.land/x/unrar@v1.0.1/mod.ts";
1111
const unrar = new UnrarAll();
1212
// If you do not want to use the default bin (the default bin only supports Windows)
13-
import { UnrarAll } from "https://deno.land/x/unrar@v1.0.0/mod.ts";
13+
import { UnrarAll } from "https://deno.land/x/unrar@v1.0.1/mod.ts";
1414
const unrar = new UnrarAll(bin: "/x/.../UnRAR.exe");
1515

1616
const src = './test/password.rar';
@@ -36,7 +36,7 @@ const switches = ['-o+', '-idcd'];
3636
* uncompress part
3737
more exmaple in test folder
3838
```ts
39-
import { Unrar } from "https://deno.land/x/unrar@v1.0.0/mod.ts";
39+
import { Unrar } from "https://deno.land/x/unrar@v1.0.1/mod.ts";
4040
const src = './test/test.rar';
4141
const dest = './test';
4242
const uncompressedFile = './test/test2.txt';

0 commit comments

Comments
 (0)