blob: 0e46fbbb9fcd5960799446a2be903b0c36d2a1bf [file] [log] [blame]
function isBinaryObject(object) {
return (typeof ArrayBuffer !== 'undefined' && object instanceof ArrayBuffer) ||
(typeof Blob !== 'undefined' && object instanceof Blob);
}
export default isBinaryObject;