Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

hyparquet

Package Overview
Dependencies
Maintainers
0
Versions
58
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

hyparquet - npm Package Compare versions

Comparing version 1.2.0 to 1.2.1

6

package.json
{
"name": "hyparquet",
"version": "1.2.0",
"version": "1.2.1",
"description": "parquet file parser for javascript",

@@ -29,3 +29,3 @@ "keywords": [

"devDependencies": {
"@types/node": "22.2.0",
"@types/node": "22.3.0",
"@typescript-eslint/eslint-plugin": "8.1.0",

@@ -35,3 +35,3 @@ "@vitest/coverage-v8": "2.0.5",

"eslint-plugin-import": "2.29.1",
"eslint-plugin-jsdoc": "50.2.1",
"eslint-plugin-jsdoc": "50.2.2",
"http-server": "14.1.1",

@@ -38,0 +38,0 @@ "hyparquet-compressors": "0.1.4",

@@ -119,3 +119,3 @@ import type { AsyncBuffer, Compressors, FileMetaData, SchemaTree } from './types.d.ts'

onChunk?: (chunk: ColumnData) => void // called when a column chunk is parsed. chunks may be outside the requested range.
onComplete?: (rows: any[][] | Record<string, any>[]) => void // called when all requested rows and columns are parsed
onComplete?: (rows: any[][]) => void // called when all requested rows and columns are parsed
compressors?: Compressors // custom decompressors

@@ -122,0 +122,0 @@ utf8?: boolean // decode byte arrays as utf8 strings (default true)

@@ -30,3 +30,3 @@ import { assembleNested } from './assemble.js'

* @param {(chunk: ColumnData) => void} [options.onChunk] called when a column chunk is parsed. chunks may include row data outside the requested range.
* @param {(rows: any[][] | Record<string, any>[]) => void} [options.onComplete] called when all requested rows and columns are parsed
* @param {(rows: any[][]) => void} [options.onComplete] called when all requested rows and columns are parsed
* @param {Compressors} [options.compressors] custom decompressors

@@ -80,3 +80,3 @@ * @returns {Promise<void>} resolves when all requested rows and columns are parsed

* @param {(chunk: ColumnData) => void} [options.onChunk] called when a column chunk is parsed. chunks may include row data outside the requested range.
* @param {(rows: any[][] | Record<string, any>[]) => void} [options.onComplete] called when all requested rows and columns are parsed
* @param {(rows: any[][]) => void} [options.onComplete] called when all requested rows and columns are parsed
* @param {Compressors} [options.compressors]

@@ -83,0 +83,0 @@ * @param {RowGroup} rowGroup row group to read

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc