Sign in
apache
/
pouchdb
/
194c0754bb482824c3cb07d6432c7b95707d0a72
/
.
/
packages
/
node_modules
/
pouchdb-binary-utils
/
src
/
blobOrBufferToBinaryString.js
blob: 4587aa40388045d201850e64b5f26fdadc584355 [
file
] [
log
] [
blame
]
// not used in Node, but here for completeness
function
blobToBase64
(
blobOrBuffer
,
callback
)
{
callback
(
blobOrBuffer
.
toString
(
'binary'
));
}
export
default
blobToBase64
;