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