Type-checking library for typed arrays
@std-types/is-typed-arrayType-checking library for typed arrays
``sh`
npm install @std-types/is-typed-array
`ts
import isTypedArray from "@std-types/is-typed-array";
console.log(isTypedArray(new Int8Array())); // true
console.log(isTypedArray(new Uint8Array())); // true
``