You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
437 B
14 lines
437 B
|
3 months ago
|
export function downloadJson(data, filename) {
|
||
|
|
const json = JSON.stringify(data, null, 2);
|
||
|
|
const blob = new Blob([json], { type: 'application/json' });
|
||
|
|
const url = URL.createObjectURL(blob);
|
||
|
|
const anchor = document.createElement('a');
|
||
|
|
|
||
|
|
anchor.href = url;
|
||
|
|
anchor.download = filename;
|
||
|
|
document.body.appendChild(anchor);
|
||
|
|
anchor.click();
|
||
|
|
document.body.removeChild(anchor);
|
||
|
|
URL.revokeObjectURL(url);
|
||
|
|
}
|