aboutsummaryrefslogtreecommitdiff
path: root/webAO/services/downloadFile.ts
diff options
context:
space:
mode:
authorstonedDiscord <Tukz@gmx.de>2022-03-28 23:41:56 +0200
committerstonedDiscord <Tukz@gmx.de>2022-03-28 23:41:56 +0200
commit903a13ff5b5beaaf42b4fcf8965eb55b642e1d2a (patch)
tree7e7cbf09c1ce6d2539bb2f33a9c3c86f19ce9d48 /webAO/services/downloadFile.ts
parent06ee582c4adefdb35220c63ee4a30444474e9388 (diff)
parentd3911aa9ad6bc16c70355fe11d1377d636b14565 (diff)
Merge branch 'master' into coolloading
Diffstat (limited to 'webAO/services/downloadFile.ts')
-rw-r--r--webAO/services/downloadFile.ts8
1 files changed, 8 insertions, 0 deletions
diff --git a/webAO/services/downloadFile.ts b/webAO/services/downloadFile.ts
new file mode 100644
index 0000000..058075f
--- /dev/null
+++ b/webAO/services/downloadFile.ts
@@ -0,0 +1,8 @@
+const downloadFile = (content: string, filename: string) => {
+ const a = document.createElement('a');
+ const file = new Blob([content], {type: 'text'});
+ a.href= URL.createObjectURL(file);
+ a.download = filename;
+ a.click();
+}
+export default downloadFile \ No newline at end of file