function createJsonDownloadButton({
data,
filename = "data.json",
buttonTitle = "Download JSON",
indent = 2
} = {}) {
const blob = new Blob([JSON.stringify(data, null, indent)], {
type: "text/json"
});
return DOM.download(blob, filename, buttonTitle);
}