Skip to content

Instantly share code, notes, and snippets.

@gaurangrshah
Created October 16, 2020 18:39
Show Gist options
  • Save gaurangrshah/a844f5c51e75fd32bf8fe1293573e927 to your computer and use it in GitHub Desktop.
Save gaurangrshah/a844f5c51e75fd32bf8fe1293573e927 to your computer and use it in GitHub Desktop.
#browser #utils #downloadAsJson
function downloadAsJson(exportObj, exportName){
var dataStr = "data:text/json;charset=utf-8," + encodeURIComponent(JSON.stringify(exportObj));
var downloadAnchorNode = document.createElement('a');
downloadAnchorNode.setAttribute("href", dataStr);
downloadAnchorNode.setAttribute("download", exportName + ".json");
document.body.appendChild(downloadAnchorNode); // required for firefox
downloadAnchorNode.click();
downloadAnchorNode.remove();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment