I have created file using blob. How can I write or append data into the same file, which I've created at a local path?
let blob = new Blob("Helloworld",{ type: 'text/plain' });
saveAs(blob, "Download\new.txt")
What should I write in the code for appending new data to new.txt