I'm not sure why, because I'm using this on chrome without any problems. But I'm trying to create a blob with base64 content and for some reason on IE 11, it doesn't work, and on console I get 'InvalidStateError' at the line of the contructor:
var blob = new Blob([encrypted], {type : 'application/octet-stream'});
The 'encrypted' variable as I said, have base64 encrypted string from CryptoJS. I believe that's not the problem (the content of the variable)... What to do here guys?