Comparing version 0.2.2 to 0.2.3
{ | ||
"name": "hyparquet", | ||
"version": "0.2.2", | ||
"version": "0.2.3", | ||
"description": "parquet file parser for javascript", | ||
@@ -30,12 +30,12 @@ "keywords": [ | ||
"devDependencies": { | ||
"@types/node": "20.11.5", | ||
"@typescript-eslint/eslint-plugin": "6.19.0", | ||
"@vitest/coverage-v8": "1.2.1", | ||
"@types/node": "20.11.8", | ||
"@typescript-eslint/eslint-plugin": "6.19.1", | ||
"@vitest/coverage-v8": "1.2.2", | ||
"eslint": "8.56.0", | ||
"eslint-plugin-import": "2.29.1", | ||
"eslint-plugin-jsdoc": "48.0.2", | ||
"eslint-plugin-jsdoc": "48.0.4", | ||
"http-server": "14.1.1", | ||
"typescript": "5.3.3", | ||
"vitest": "1.2.1" | ||
"vitest": "1.2.2" | ||
} | ||
} |
@@ -122,2 +122,3 @@ import { CompressionCodec, ConvertedType, Encoding, PageType } from './constants.js' | ||
} | ||
values = convert(values, schemaElement(schema, columnMetadata.path_in_schema)) | ||
} else if (Array.isArray(dataPage)) { | ||
@@ -176,3 +177,3 @@ // convert primitive types to rich types | ||
const ctype = schemaElement.converted_type | ||
if (!ctype) return data | ||
if (ctype === undefined) return data | ||
if (ctype === ConvertedType.UTF8) { | ||
@@ -179,0 +180,0 @@ const decoder = new TextDecoder() |
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
74188
2015