Appearance
检查 value 是否是 TypedArray (如 Uint8Array)。
value
import { isTypedArray } from '@base-web-kits/base-tools-ts'; isTypedArray(new Uint8Array(8)); // 结果: true isTypedArray([]); // 结果: false
value (any)
(boolean)
true
false