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