David Duponchel
David Duponchel
Uglifyjs replaces `\x03` with the actual ascii character (it takes less space) which isn't a printable character. It seems to cause encoding issues in some cases (which is strange, as...
I have no idea what's going on in the issue 477, so I try removing the actual line. This line isn't resolved to any lib (as the browserify build doesn't...
Using esm triggered errors: ```js require = require('@std/esm')(module, { cjs: true, esm: 'js' }); var JSZip = require("jszip"); var zip = new JSZip(); zip.file("test", "test") // TypeError: arguments[i].hasOwnProperty is not...
Downloading more than one file is common (like in the JSZip downloader example). `getBinaryContent` could take an array of urls : ``` js JSZipUtils.getBinaryContent(["path1", "path2"], function (err, dataArray) {...}) ```...