@thi.ng/checks
Version:
Collection of 70+ type, feature & value checks
11 lines (10 loc) • 363 B
JavaScript
export const isTypedArray = (x) => x &&
(x instanceof Float32Array ||
x instanceof Float64Array ||
x instanceof Uint32Array ||
x instanceof Int32Array ||
x instanceof Uint8Array ||
x instanceof Int8Array ||
x instanceof Uint16Array ||
x instanceof Int16Array ||
x instanceof Uint8ClampedArray);