Skip to content

Commit 9aac1b5

Browse files
committed
fix: Allow ArrayBufferLike input to tableFromIPC.
1 parent d392c44 commit 9aac1b5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/decode/table-from-ipc.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ import { decodeIPC } from './decode-ipc.js';
1616
*
1717
* [1]: https://arrow.apache.org/docs/format/Columnar.html#serialization-and-interprocess-communication-ipc
1818
* [2]: https://arrow.apache.org/docs/format/Columnar.html#ipc-streaming-format
19-
* @param {ArrayBuffer | Uint8Array | Uint8Array[]} data
19+
* @param {ArrayBufferLike | Uint8Array | Uint8Array[]} data
2020
* The source byte buffer, or an array of buffers. If an array, each byte
2121
* array may contain one or more self-contained messages. Messages may NOT
2222
* span multiple byte arrays.

0 commit comments

Comments
 (0)