Last active
April 11, 2025 10:53
-
-
Save Linda-chan/96250c1b681cc3a9425cf9a311a88c55 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
| dumpData("Some Data", "nao.txt"); | |
| //============================================================= | |
| // Based on Yodayo Tavern Chat Downloader by Holly... | |
| //============================================================= | |
| function dumpData(data, fileName) { | |
| var blob = new Blob([data], {type: "text/plain"}); | |
| var url = URL.createObjectURL(blob); | |
| initiateDownload(url, fileName); | |
| URL.revokeObjectURL(url); | |
| //=========================================================== | |
| function initiateDownload(path, fileName) { | |
| var anchor = document.createElement('a'); | |
| anchor.href = path; | |
| anchor.download = fileName; | |
| document.body.appendChild(anchor); | |
| anchor.click(); | |
| document.body.removeChild(anchor); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment