Guest User

Untitled

a guest
Jul 17th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.35 KB | None | 0 0
  1. // this only half works, it's a demonstration of the idea
  2. export default (text, filename) => {
  3. const blob = new Blob([text], { type: "text/plain" });
  4. const anchor = document.createElement("a");
  5.  
  6. anchor.download = filename;
  7. anchor.href = window.URL.createObjectURL(blob);
  8. anchor.target = "_blank";
  9. anchor.style.display = "button";
  10.  
  11. return anchor;
  12. };
Add Comment
Please, Sign In to add comment