Sign in
apache
/
pouchdb
/
81df2f8954a20e0b4e3db8eef7290f56b9e4da3a
/
.
/
packages
/
node_modules
/
pouchdb-binary-utils
/
src
/
binaryStringToBlobOrBuffer.js
blob: eb1853446bdaf5ad064d64559129bf458a884b7a [
file
] [
log
] [
blame
]
import
typedBuffer from
'./typedBuffer'
;
function
binStringToBluffer
(
binString
,
type
)
{
return
typedBuffer
(
binString
,
'binary'
,
type
);
}
export
default
binStringToBluffer
;