We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e1c8579 commit eae5d2eCopy full SHA for eae5d2e
src/parquet.ts
@@ -17,6 +17,10 @@ async function decompressBlob(blob: Blob) {
17
* @return Whether initialization succeeded
18
*/
19
export async function initParquetWasmFromBinary(view: DataView): Promise<void> {
20
+ if (WASM_READY) {
21
+ return;
22
+ }
23
+
24
let blob = new Blob([view]);
25
const decompressedBlob = await decompressBlob(blob);
26
const decompressedBuffer = await decompressedBlob.arrayBuffer();
0 commit comments