Now I have tried to make csv file from Visual Studio Code. I found a code to make csv file from editor. However, the code is not working. Please give me advise to resolve a problem in the code.
*Win 10 pro 64 bit, VScode: 1.45.1, node.js: 13.14.0, clasp: 2.3.0
let blob = new Blob(['ABC'],{type:"text/csv"});
let link = document.createElement('a');
link.href = URL.createObjectURL(blob);
link.download = 'made from vscode.csv';
link.click();
I modified first sentence. text/plan to text/csv