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