Sign in
apache
/
pouchdb
/
refs/heads/4071-part-three
/
.
/
lib
/
deps
/
binary
/
base64StringToBlobOrBuffer-browser.js
blob: 405e3714ed94b3ddf9110f323ff18e75941db3d1 [
file
] [
log
] [
blame
]
'use strict'
;
var
atob
=
require
(
'./base64'
).
atob
;
var
binaryStringToBlobOrBuffer
=
require
(
'./binaryStringToBlobOrBuffer'
);
module
.
exports
=
function
(
b64
,
type
)
{
return
binaryStringToBlobOrBuffer
(
atob
(
b64
),
type
);
};