package.dist-es.index.js Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of is-array-buffer Show documentation
Show all versions of is-array-buffer Show documentation
Provides a function for detecting if an argument is an ArrayBuffer
The newest version!
export const isArrayBuffer = (arg) => (typeof ArrayBuffer === "function" && arg instanceof ArrayBuffer) ||
Object.prototype.toString.call(arg) === "[object ArrayBuffer]";