UNPKG

arquero

Version:

Query processing and transformation of array-backed data tables.

10 lines (8 loc) 221 B
const TypedArray = Object.getPrototypeOf(Int8Array); /** * @param {*} value * @return {value is import("../table/types.js").TypedArray} */ export function isTypedArray(value) { return value instanceof TypedArray; }