File size: 423 Bytes
246d201 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
export const downloadJSON = (data: object, filename: string) => {
const blob = new Blob([JSON.stringify(data, null, 2)], {
type: "application/json",
});
const url = URL.createObjectURL(blob);
const link = document.createElement("a");
link.href = url;
link.download = filename;
document.body.appendChild(link);
link.click();
document.body.removeChild(link);
URL.revokeObjectURL(url);
};
|