Comparing version 0.9.9 to 0.9.10
{ | ||
"name": "hyparquet", | ||
"version": "0.9.9", | ||
"version": "0.9.10", | ||
"description": "parquet file parser for javascript", | ||
@@ -31,3 +31,3 @@ "keywords": [ | ||
"@types/node": "20.14.2", | ||
"@typescript-eslint/eslint-plugin": "7.12.0", | ||
"@typescript-eslint/eslint-plugin": "7.13.0", | ||
"@vitest/coverage-v8": "1.6.0", | ||
@@ -34,0 +34,0 @@ "eslint": "8.57.0", |
@@ -100,3 +100,3 @@ import { readVarInt } from './thrift.js' | ||
left -= 8 | ||
data >>= 8 | ||
data >>>= 8 | ||
} else if (left - right < bitWidth) { | ||
@@ -103,0 +103,0 @@ // if we don't have bitWidth number of bits to read, read next byte |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
101956