summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/services/text-to-download.service.ts
blob: 6e63287eab3b265052fe9bb322faeaad52542305 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
import { Injectable } from '@angular/core';

import { saveAs } from 'file-saver';

@Injectable({
  providedIn: 'root'
})
export class TextToDownloadService {
  download(downloadText: string, filename?: string) {
    saveAs(new Blob([downloadText]), filename);
  }
}