Checks if the given value is TypedArray (opens in a new tab).
Syntax
import { isTypedArr } from '@opentf/std';
isTypedArr(value: unknown): boolean;
Examples
isTypedArr([]) //=> false
isTypedArr(new Int8Array()) //=> true
isTypedArr(new Float64Array()) //=> true