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