So in order to upload something into Firebase Storage, the object has to either be a blob or file object.
If a user were to select images from their local storage (in this case it is by default a file object), then those can be uploaded to Firebase Storage quite easily.
If you want upload an image from the web, you have to create a blob object and put the image into the blob.
With that, our team is struggling to create a blob that contains the image from the web to upload to Firebase Storage. How would you put the image in the blob so that in Firebase Storage the image is present?
Note: this is for React so it would be in javascript.