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 27ce07f commit 6a8d28eCopy full SHA for 6a8d28e
modules/rntuple.mjs
@@ -307,7 +307,7 @@ function decodeZigzag(blob, coltype) {
307
zigzag = new BigUint64Array(blob.buffer || blob, blob.byteOffset || 0, blob.byteLength / 8);
308
result = new BigInt64Array(zigzag.length);
309
} else
310
- throw new Error(`DecodeZigZag: unsupported column type ${coltype}`);
+ throw new Error(`decodeZigzag: unsupported column type ${coltype}`);
311
312
for (let i = 0; i < zigzag.length; ++i) {
313
// ZigZag decode: (x >>> 1) ^ (-(x & 1))
0 commit comments