Sign in
apache
/
pouchdb
/
refs/heads/test-npm-git
/
.
/
src
/
deps
/
binary
/
binaryStringToBlobOrBuffer.js
blob: eb1853446bdaf5ad064d64559129bf458a884b7a [
file
] [
log
] [
blame
]
import
typedBuffer from
'./typedBuffer'
;
function
binStringToBluffer
(
binString
,
type
)
{
return
typedBuffer
(
binString
,
'binary'
,
type
);
}
export
default
binStringToBluffer
;