Skip to content

Instantly share code, notes, and snippets.

@Ivannnnn
Last active August 30, 2022 11:04
Show Gist options
  • Select an option

  • Save Ivannnnn/5778d90591eef16eedca362850524c3d to your computer and use it in GitHub Desktop.

Select an option

Save Ivannnnn/5778d90591eef16eedca362850524c3d to your computer and use it in GitHub Desktop.
function download(filename, text) {
Object.assign(document.createElement("a"), {
download: filename,
href: "data:text/plain;charset=utf-8," + encodeURIComponent(text),
}).click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment