UNPKG

is-typed-array

Version:

Is this value a JS Typed Array? This module works cross-realm/iframe, does not depend on `instanceof` or mutable properties, and despite ES6 Symbol.toStringTag.

10 lines (6 loc) 222 B
import type { TypedArray } from 'which-typed-array'; declare namespace isTypedArray { export { TypedArray }; } declare function isTypedArray(value: unknown): value is isTypedArray.TypedArray; export = isTypedArray;