@gscdump/engine 0.31.4 → 0.31.5
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.
- package/dist/THIRD-PARTY-LICENSES.md +2 -2
- package/dist/_chunks/libs/hyparquet-compressors.mjs +4 -4
- package/dist/_chunks/libs/hyparquet-writer.mjs +5014 -0
- package/dist/_chunks/libs/hyparquet.d.mts +36 -0
- package/dist/_chunks/libs/hyparquet.mjs +2720 -0
- package/dist/_chunks/libs/icebird.d.mts +1 -1
- package/dist/_chunks/libs/icebird.mjs +2 -3
- package/dist/_chunks/storage.d.mts +1 -1
- package/dist/adapters/hyparquet.d.mts +1 -1
- package/dist/adapters/hyparquet.mjs +2 -2
- package/package.json +6 -14
|
@@ -304,11 +304,11 @@ Repository: https://github.com/101arrowz/fzstd
|
|
|
304
304
|
|
|
305
305
|
---------------------------------------
|
|
306
306
|
|
|
307
|
-
## hyparquet-compressors, icebird, squirreling
|
|
307
|
+
## hyparquet, hyparquet, hyparquet-compressors, hyparquet-writer, hyparquet-writer, icebird, squirreling
|
|
308
308
|
|
|
309
309
|
License: MIT
|
|
310
310
|
By: Hyperparam
|
|
311
|
-
Repositories: https://github.com/hyparam/hyparquet-compressors, https://github.com/hyparam/icebird, https://github.com/hyparam/squirreling
|
|
311
|
+
Repositories: https://github.com/hyparam/hyparquet, https://github.com/hyparam/hyparquet, https://github.com/hyparam/hyparquet-compressors, https://github.com/hyparam/hyparquet-writer, https://github.com/hyparam/hyparquet-writer, https://github.com/hyparam/icebird, https://github.com/hyparam/squirreling
|
|
312
312
|
|
|
313
313
|
> The MIT License (MIT)
|
|
314
314
|
>
|
|
@@ -1,14 +1,14 @@
|
|
|
1
|
+
import { snappyUncompress as snappyUncompress$1 } from "./hyparquet.mjs";
|
|
1
2
|
import "./fzstd.mjs";
|
|
2
|
-
import { snappyUncompress } from "hyparquet/src/snappy.js";
|
|
3
3
|
function decode(input, outputLength) {
|
|
4
4
|
const output = new Uint8Array(outputLength);
|
|
5
|
-
snappyUncompress(input, output);
|
|
5
|
+
snappyUncompress$1(input, output);
|
|
6
6
|
return output;
|
|
7
7
|
}
|
|
8
8
|
function snappyUncompressor() {
|
|
9
9
|
return decode;
|
|
10
10
|
}
|
|
11
|
-
function snappyUncompress
|
|
11
|
+
function snappyUncompress(input, outputLength) {
|
|
12
12
|
return decode(input, outputLength);
|
|
13
13
|
}
|
|
14
14
|
const BROTLI_READ_SIZE = 4096;
|
|
@@ -2793,4 +2793,4 @@ new Uint8Array([
|
|
|
2793
2793
|
5,
|
|
2794
2794
|
5
|
|
2795
2795
|
]);
|
|
2796
|
-
export { gunzip, snappyUncompress
|
|
2796
|
+
export { gunzip, snappyUncompress, snappyUncompressor };
|