Eduardo Bento
Results
1
comments of
Eduardo Bento
downloadFile = function (msg, done) { let xhr = new XMLHttpRequest(); xhr.onload = function () { if (xhr.readyState == 4) { if (xhr.status == 200) { done(xhr.response, msg); } else...