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