Sign in
apache
/
pouchdb
/
2f74596026a536664cedf0f9e580208a3e4a9a23
/
.
/
packages
/
node_modules
/
pouchdb-ajax
/
src
/
createBlobOrBufferFromParts.js
blob: aca0ad87401b04d0955780e064921d94c8d1047e [
file
] [
log
] [
blame
]
import
bufferFrom from
'buffer-from'
;
// ponyfill for Node <6
function
createBlobOrBufferFromParts
(
parts
)
{
return
Buffer
.
concat
(
parts
.
map
(
function
(
part
)
{
return
bufferFrom
(
part
,
'binary'
);
}));
}
export
default
createBlobOrBufferFromParts
;