Sign in
apache
/
pouchdb
/
refs/heads/test-npm-git
/
.
/
src
/
deps
/
binary
/
isBinaryObject-browser.js
blob: 5982f28de13b85a764760c85f96b45544aadbd21 [
file
] [
log
] [
blame
]
function
isBinaryObject
(
object
)
{
return
object instanceof
ArrayBuffer
||
(
typeof
Blob
!==
'undefined'
&&
object instanceof
Blob
);
}
export
default
isBinaryObject
;