function downloader (content, fileName, contentType) { var a = document.createElement("a"); var contentJSON = JSON.stringify(content); var file = new Blob([contentJSON], {type: contentType}); console.log(file) a.href = URL.createObjectURL(file); a.download = fileName; a.click(); }