File tree 1 file changed +4
-4
lines changed
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -5,12 +5,12 @@ uncompress rar file for deno
5
5
* upcompress all
6
6
``` js
7
7
// 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" ;
9
9
// 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" ;
11
11
const unrar = new UnrarAll ();
12
12
// 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" ;
14
14
const unrar = new UnrarAll (bin: " /x/.../UnRAR.exe" );
15
15
16
16
const src = ' ./test/password.rar' ;
@@ -36,7 +36,7 @@ const switches = ['-o+', '-idcd'];
36
36
* uncompress part
37
37
more exmaple in test folder
38
38
``` 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" ;
40
40
const src = ' ./test/test.rar' ;
41
41
const dest = ' ./test' ;
42
42
const uncompressedFile = ' ./test/test2.txt' ;
You can’t perform that action at this time.
0 commit comments