You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
With this code you will end up with
ASCII control chars as path:
var zip = new JSZip();
zip.file("Hello.txt", "Hello World\n");
var img = zip.folder("öäü");
img.file("smile.gif", imgData, {base64: true});
var content = zip.generate();
location.href="data:application/zip;base64,"+content;
With this code you will end up with
ASCII control chars as path: