Hi,
I am trying to use Jszip to create a blob, but I keep on getting the following message: “blob is not supported by this platform”. Please assist
Sample code:
var zip = new JSZip();zip.file("Hello.txt", "Hello World\n");var img = zip.folder("images"); img.file("smile.gif", imgData, {base64: true});zip.generateAsync({type:"blob"}).then(function(content) { });