aboutsummaryrefslogtreecommitdiff
path: root/webAO/services/downloadFile.ts
blob: 058075f027cd8a8e220733163c5c65f0f9c41cbe (plain)
1
2
3
4
5
6
7
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