Skip to content
Snippets Groups Projects
downloadText.js 312 B
Newer Older
Leo McElroy's avatar
Leo McElroy committed
export function downloadText(filename, text) {
  const blob = new Blob([text], { type: "text/plain" });

  var link = document.createElement("a"); // Or maybe get it from the current document
  link.href = URL.createObjectURL(blob);
  link.download = `${filename}`;
  link.click();
  URL.revokeObjectURL(link);
}