I use dropzone.js to upload files. However my files are getting preprocessed before uploading. In the end I have a blob which I would like to upload.
Unfortunately there is only a addFile() method available but no addBlob() method. I know I could use the File constructor like this:
new File([blob], 'filename', options)
but the constructor is not available in IE/Edge.
Is there any way to attach a blob to the dropzone.js queue?