Skip to content

Commit e4933af

Browse files
bump up version
1 parent a8683b5 commit e4933af

File tree

97 files changed

+652
-652
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

97 files changed

+652
-652
lines changed

deno.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@zip-js/zip-js",
3-
"version": "2.7.72",
3+
"version": "2.7.73",
44
"exports": {
55
".": "./index.js",
66
"./data-uri": "./lib/zip-data-uri.js"

docs/classes/BlobReader.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: BlobReader
88

9-
Defined in: [index.d.ts:529](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L529)
9+
Defined in: [index.d.ts:529](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L529)
1010

1111
Represents a [Reader](Reader.md) instance used to read data provided as a `Blob` instance.
1212

@@ -20,7 +20,7 @@ Represents a [Reader](Reader.md) instance used to read data provided as a `Blob`
2020

2121
> **new BlobReader**(`value`): `BlobReader`
2222
23-
Defined in: [index.d.ts:498](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L498)
23+
Defined in: [index.d.ts:498](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L498)
2424

2525
Creates the [Reader](Reader.md) instance
2626

@@ -46,7 +46,7 @@ The data to read.
4646

4747
> **readable**: `ReadableStream`
4848
49-
Defined in: [index.d.ts:502](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L502)
49+
Defined in: [index.d.ts:502](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L502)
5050

5151
The `ReadableStream` instance.
5252

@@ -60,7 +60,7 @@ The `ReadableStream` instance.
6060

6161
> **size**: `number`
6262
63-
Defined in: [index.d.ts:506](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L506)
63+
Defined in: [index.d.ts:506](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L506)
6464

6565
The total size of the data in bytes.
6666

@@ -74,7 +74,7 @@ The total size of the data in bytes.
7474

7575
> `optional` **init**(): `Promise`\<`void`\>
7676
77-
Defined in: [index.d.ts:510](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L510)
77+
Defined in: [index.d.ts:510](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L510)
7878

7979
Initializes the instance asynchronously
8080

@@ -92,7 +92,7 @@ Initializes the instance asynchronously
9292

9393
> **readUint8Array**(`index`, `length`): `Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
9494
95-
Defined in: [index.d.ts:518](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L518)
95+
Defined in: [index.d.ts:518](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L518)
9696

9797
Reads a chunk of data
9898

docs/classes/BlobWriter.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: BlobWriter
88

9-
Defined in: [index.d.ts:716](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L716)
9+
Defined in: [index.d.ts:716](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L716)
1010

1111
Represents a [WritableWriter](../interfaces/WritableWriter.md) instance used to retrieve the written data as a `Blob` instance.
1212

@@ -21,7 +21,7 @@ Represents a [WritableWriter](../interfaces/WritableWriter.md) instance used to
2121

2222
> **new BlobWriter**(`mimeString?`): `BlobWriter`
2323
24-
Defined in: [index.d.ts:730](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L730)
24+
Defined in: [index.d.ts:730](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L730)
2525

2626
Creates the BlobWriter instance
2727

@@ -43,7 +43,7 @@ The MIME type of the content.
4343

4444
> **writable**: `WritableStream`
4545
46-
Defined in: [index.d.ts:720](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L720)
46+
Defined in: [index.d.ts:720](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L720)
4747

4848
The `WritableStream` instance.
4949

@@ -57,7 +57,7 @@ The `WritableStream` instance.
5757

5858
> **getData**(): `Promise`\<`Blob`\>
5959
60-
Defined in: [index.d.ts:736](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L736)
60+
Defined in: [index.d.ts:736](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L736)
6161

6262
Retrieves all the written data
6363

@@ -73,7 +73,7 @@ A promise resolving to the written data.
7373

7474
> **init**(): `Promise`\<`void`\>
7575
76-
Defined in: [index.d.ts:724](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L724)
76+
Defined in: [index.d.ts:724](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L724)
7777

7878
Initializes the instance asynchronously
7979

docs/classes/CodecStream.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: CodecStream
88

9-
Defined in: [index.d.ts:431](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L431)
9+
Defined in: [index.d.ts:431](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L431)
1010

1111
Represents a class implementing `CompressionStream` or `DecompressionStream` interfaces.
1212

docs/classes/Data64URIReader.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: Data64URIReader
88

9-
Defined in: [index.d.ts:534](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L534)
9+
Defined in: [index.d.ts:534](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L534)
1010

1111
Represents a [Reader](Reader.md) instance used to read data provided as a Data URI `string` encoded in Base64.
1212

@@ -20,7 +20,7 @@ Represents a [Reader](Reader.md) instance used to read data provided as a Data U
2020

2121
> **new Data64URIReader**(`value`): `Data64URIReader`
2222
23-
Defined in: [index.d.ts:498](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L498)
23+
Defined in: [index.d.ts:498](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L498)
2424

2525
Creates the [Reader](Reader.md) instance
2626

@@ -46,7 +46,7 @@ The data to read.
4646

4747
> **readable**: `ReadableStream`
4848
49-
Defined in: [index.d.ts:502](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L502)
49+
Defined in: [index.d.ts:502](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L502)
5050

5151
The `ReadableStream` instance.
5252

@@ -60,7 +60,7 @@ The `ReadableStream` instance.
6060

6161
> **size**: `number`
6262
63-
Defined in: [index.d.ts:506](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L506)
63+
Defined in: [index.d.ts:506](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L506)
6464

6565
The total size of the data in bytes.
6666

@@ -74,7 +74,7 @@ The total size of the data in bytes.
7474

7575
> `optional` **init**(): `Promise`\<`void`\>
7676
77-
Defined in: [index.d.ts:510](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L510)
77+
Defined in: [index.d.ts:510](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L510)
7878

7979
Initializes the instance asynchronously
8080

@@ -92,7 +92,7 @@ Initializes the instance asynchronously
9292

9393
> **readUint8Array**(`index`, `length`): `Promise`\<`Uint8Array`\<`ArrayBufferLike`\>\>
9494
95-
Defined in: [index.d.ts:518](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L518)
95+
Defined in: [index.d.ts:518](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L518)
9696

9797
Reads a chunk of data
9898

docs/classes/Data64URIWriter.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: Data64URIWriter
88

9-
Defined in: [index.d.ts:742](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L742)
9+
Defined in: [index.d.ts:742](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L742)
1010

1111
Represents a [Writer](Writer.md) instance used to retrieve the written data as a Data URI `string` encoded in Base64.
1212

@@ -20,7 +20,7 @@ Represents a [Writer](Writer.md) instance used to retrieve the written data as a
2020

2121
> **new Data64URIWriter**(`mimeString?`): `Data64URIWriter`
2222
23-
Defined in: [index.d.ts:748](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L748)
23+
Defined in: [index.d.ts:748](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L748)
2424

2525
Creates the Data64URIWriter instance
2626

@@ -46,7 +46,7 @@ The MIME type of the content.
4646

4747
> **writable**: `WritableStream`
4848
49-
Defined in: [index.d.ts:678](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L678)
49+
Defined in: [index.d.ts:678](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L678)
5050

5151
The `WritableStream` instance.
5252

@@ -60,7 +60,7 @@ The `WritableStream` instance.
6060

6161
> **getData**(): `Promise`\<`string`\>
6262
63-
Defined in: [index.d.ts:698](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L698)
63+
Defined in: [index.d.ts:698](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L698)
6464

6565
Retrieves all the written data
6666

@@ -80,7 +80,7 @@ A promise resolving to the written data.
8080

8181
> `optional` **init**(`size?`): `Promise`\<`void`\>
8282
83-
Defined in: [index.d.ts:684](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L684)
83+
Defined in: [index.d.ts:684](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L684)
8484

8585
Initializes the instance asynchronously
8686

@@ -106,7 +106,7 @@ the total size of the written data in bytes.
106106

107107
> **writeUint8Array**(`array`): `Promise`\<`void`\>
108108
109-
Defined in: [index.d.ts:692](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L692)
109+
Defined in: [index.d.ts:692](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L692)
110110

111111
Appends a chunk of data
112112

docs/classes/EventBasedCodec.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66

77
# Class: EventBasedCodec
88

9-
Defined in: [index.d.ts:363](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L363)
9+
Defined in: [index.d.ts:363](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L363)
1010

1111
Represents an event-based implementation of a third-party codec.
1212

@@ -26,7 +26,7 @@ Represents an event-based implementation of a third-party codec.
2626

2727
> **ondata**(`data?`): `void`
2828
29-
Defined in: [index.d.ts:375](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L375)
29+
Defined in: [index.d.ts:375](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L375)
3030

3131
The function called when a chunk of data has been compressed/decompressed.
3232

@@ -48,7 +48,7 @@ The chunk of compressed/decompressed data.
4848

4949
> **push**(`data`): `void`
5050
51-
Defined in: [index.d.ts:369](https://github.com/gildas-lormeau/zip.js/blob/347f13e008678d1fc6f83418c2c38f7e3569d2a4/index.d.ts#L369)
51+
Defined in: [index.d.ts:369](https://github.com/gildas-lormeau/zip.js/blob/a8683b5808f1a1fcac8b2988f79c4fbbc6b3e88f/index.d.ts#L369)
5252

5353
Appends a chunk of data to compress/decompress
5454

0 commit comments

Comments
 (0)