mirror of
https://github.com/asadbek064/hyparquet.git
synced 2026-01-05 10:56:38 +00:00
17 lines
420 B
JavaScript
17 lines
420 B
JavaScript
import { parquetMetadata } from './metadata.js'
|
|
export { parquetMetadata }
|
|
|
|
import { snappyUncompress } from './snappy.js'
|
|
export { snappyUncompress }
|
|
|
|
/**
|
|
* Read parquet data rows from a file
|
|
*
|
|
* @param {ArrayBuffer} arrayBuffer parquet file contents
|
|
* @returns {any[][]} row data
|
|
*/
|
|
export function parquetRead(arrayBuffer) {
|
|
const metadata = parquetMetadata(arrayBuffer)
|
|
throw new Error('not implemented')
|
|
}
|