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