Sign in
apache
/
pouchdb
/
refs/heads/test-npm-git
/
.
/
src
/
deps
/
ajax
/
createBlobOrBufferFromParts-browser.js
blob: a3fdc2caaa8f7dd974ba5a37dc553fae2f22b469 [
file
] [
log
] [
blame
]
import
createBlob from
'../binary/blob'
;
function
createBlobOrBufferFromParts
(
parts
,
type
)
{
return
createBlob
(
parts
,
{
type
:
type
});
}
export
default
createBlobOrBufferFromParts
;