Sign in
apache
/
pouchdb
/
refs/heads/extract-polyfills
/
.
/
packages
/
node_modules
/
pouchdb-utils
/
src
/
isBinaryObject-browser.js
blob: 0633b2c131e8c8d5d8852ec8e9af4d5c4f78dcd0 [
file
] [
log
] [
blame
]
function
isBinaryObject
(
object
)
{
return
(
typeof
ArrayBuffer
!==
'undefined'
&&
object instanceof
ArrayBuffer
)
||
(
typeof
Blob
!==
'undefined'
&&
object instanceof
Blob
);
}
export
default
isBinaryObject
;