This is a snippet for the code that I want to do Blob to Base64 string:
Blob
Base64
This commented part works and that when the URL generated by this i
Most easiest way in a single line of code
var base64Image = new Buffer( blob, 'binary' ).toString('base64');