MCPcopy Index your code
hub / github.com/apache/pouchdb / blobToBinaryString

Function blobToBinaryString

lib/index-browser.js:854–858  ·  view source on GitHub ↗
(blobOrBuffer, callback)

Source from the content-addressed store, hash-verified

852}
853
854function blobToBinaryString(blobOrBuffer, callback) {
855 readAsBinaryString(blobOrBuffer, function (bin) {
856 callback(bin);
857 });
858}
859
860function blobToBase64(blobOrBuffer, callback) {
861 blobToBinaryString(blobOrBuffer, function (base64) {

Callers 2

blobToBase64Function · 0.70
preprocessBlobFunction · 0.70

Calls 1

readAsBinaryStringFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…