UNPKG

@uwdata/mosaic-core

Version:

Scalable and extensible linked data views.

14 lines 534 B
import { tableFromIPC } from '@uwdata/flechette'; /** * Decode Arrow IPC bytes to a table instance. * The default options map date and timestamp values to JS Date objects. * @param data Arrow IPC bytes. * @param options Arrow IPC extraction options. * If unspecified, the default options will extract date and timestamp * values to JS Date objects. * @returns A table instance. */ export function decodeIPC(data, options = { useDate: true }) { return tableFromIPC(data, options); } //# sourceMappingURL=decode-ipc.js.map