blob: 4587aa40388045d201850e64b5f26fdadc584355 [file] [log] [blame]
// not used in Node, but here for completeness
function blobToBase64(blobOrBuffer, callback) {
callback(blobOrBuffer.toString('binary'));
}
export default blobToBase64;