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 saveTextToFile() { | |
const saveText = "tmp"; | |
// file setting | |
const text = saveText; | |
const name = "sample.json"; | |
const type = "text/plain"; | |
// create file | |
const a = document.createElement("a"); |