Skip to content

Commit 6a8d28e

Browse files
Krmjn09silverweed
andauthored
Update modules/rntuple.mjs
Co-authored-by: Silverweed <[email protected]>
1 parent 27ce07f commit 6a8d28e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

modules/rntuple.mjs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -307,7 +307,7 @@ function decodeZigzag(blob, coltype) {
307307
zigzag = new BigUint64Array(blob.buffer || blob, blob.byteOffset || 0, blob.byteLength / 8);
308308
result = new BigInt64Array(zigzag.length);
309309
} else
310-
throw new Error(`DecodeZigZag: unsupported column type ${coltype}`);
310+
throw new Error(`decodeZigzag: unsupported column type ${coltype}`);
311311

312312
for (let i = 0; i < zigzag.length; ++i) {
313313
// ZigZag decode: (x >>> 1) ^ (-(x & 1))

0 commit comments

Comments
 (0)