Facebook
From Ample Plover, 3 Years ago, written in Plain Text.
Embed
Download Paste or View Raw
Hits: 127
  1. function downloader (content, fileName, contentType) {
  2.     var a = document.createElement("a");
  3.     var contentJSON = JSON.stringify(content);
  4.     var file = new Blob([contentJSON], {type: contentType});
  5.     console.log(file)
  6.     a.href = URL.createObjectURL(file);
  7.     a.download = fileName;
  8.     a.click();
  9. }