UNPKG

arquero-arrow

Version:

Arrow serialization support for Arquero.

6 lines (5 loc) 174 B
import isArray from './is-array'; import isTypedArray from './is-typed-array'; export default function isArrayType(value) { return isArray(value) || isTypedArray(value); }