Sign in
apache
/
pouchdb
/
57923d6c088f52adcc785f1dad693227fb209396
/
.
/
lib
/
deps
/
binary
/
base64StringToBlobOrBuffer.js
blob: 3ebf9812ff1e4a9c94a9d6350395284b3d4a650a [
file
]
'use strict'
;
var
typedBuffer
=
require
(
'./typedBuffer'
);
module
.
exports
=
function
(
b64
,
type
)
{
return
typedBuffer
(
b64
,
'base64'
,
type
);
};