Last active
August 30, 2022 11:04
-
-
Save Ivannnnn/5778d90591eef16eedca362850524c3d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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