Sign in
apache
/
pouchdb
/
refs/heads/smaller-errors-code
/
.
/
packages
/
pouchdb-binary-utils
/
src
/
arrayBufferToBase64.js
blob: 4e68a9d86df3c68b2664c3b071b9f9b4d4729584 [
file
] [
log
] [
blame
]
// In Node, this is just a Buffer rather than an ArrayBuffer
function
arrayBufferToBase64
(
buffer
)
{
return
buffer
.
toString
(
'binary'
);
}
export
default
arrayBufferToBase64
;