Skip to content

Instantly share code, notes, and snippets.

@PedroAlvesV
Last active March 25, 2020 06:06
Show Gist options
  • Save PedroAlvesV/7aad0d14e013009b7226785c2bf775f4 to your computer and use it in GitHub Desktop.
Save PedroAlvesV/7aad0d14e013009b7226785c2bf775f4 to your computer and use it in GitHub Desktop.
js-snippets
function download(content, fileName, contentType) {
var a = document.createElement("a");
var file = new Blob([content], {type: contentType});
a.href = URL.createObjectURL(file);
a.download = fileName;
a.click();
}
download(JSON.stringify(jsonData), 'json.txt', 'text/plain');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment