FileSaver.js https://github.com/eligrey/FileSaver.js
Tested in Chrome and Safari. Chrome save file as download
and Safari save file as unknown
.
Tried
var blob = new Blob(["Hello, world!"], {type: "text/plain;charset=utf-8"});
FileSaver.saveAs(blob, "hello world.txt");
and
var file = new File(["Hello, world!"], "hello world.txt", {type: "text/plain;charset=utf-8"});
FileSaver.saveAs(file);
both not work.