single-file-core 1.5.89 → 1.5.91

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,3 @@
1
+ import { initWorker } from "../node_modules/@zip.js/zip.js/lib/core/web-worker-base.js";
2
+
3
+ initWorker();
@@ -0,0 +1,3 @@
1
+ export * from "../node_modules/@zip.js/zip.js/lib/zip-core.js";
2
+ export { initStream, readUint8Array } from "../node_modules/@zip.js/zip.js/lib/core/io.js";
3
+ export { deflateSync as deflateRaw, inflateSync as inflateRaw } from "./fflate.js";
@@ -0,0 +1,25 @@
1
+ import { configure, setDefaultConfiguration } from "../node_modules/@zip.js/zip.js/lib/core/configuration.js";
2
+ import { DecompressionStreamFallback } from "./fflate-streams.js";
3
+
4
+ setDefaultConfiguration({
5
+ workerURI: null,
6
+ wasmURI: null,
7
+ DecompressionStreamFallback
8
+ });
9
+
10
+ export {
11
+ ZipReader
12
+ } from "../node_modules/@zip.js/zip.js/lib/core/zip-reader.js";
13
+ export {
14
+ HttpRangeReader,
15
+ BlobReader,
16
+ BlobWriter,
17
+ TextWriter,
18
+ Data64URIWriter
19
+ } from "../node_modules/@zip.js/zip.js/lib/core/io.js";
20
+ export {
21
+ configure
22
+ };
23
+ export {
24
+ inflateSync as inflateRaw
25
+ } from "./fflate.js";