function downLoadTXT(text, filename) {
// TXTをダウンロードする
let blob = new Blob([text], {type: "text/plain"});
let link = document.createElement("a"); // aタグのエレメントを作成
link.href = window.URL.createObjectURL(blob);
link.download = filename;
link.click();
}
More than 3 years have passed since last update.
Register as a new user and use Qiita more conveniently
- You get articles that match your needs
- You can efficiently read back useful information
- You can use dark theme