Skip to content

Instantly share code, notes, and snippets.

@victory-sokolov
Created February 16, 2021 09:39
Show Gist options
  • Save victory-sokolov/37dbf2ba82c30a4cd072bfa210df5a14 to your computer and use it in GitHub Desktop.
Save victory-sokolov/37dbf2ba82c30a4cd072bfa210df5a14 to your computer and use it in GitHub Desktop.
Download object data to a file
dataToFile(content, fileName, contentType) {
const a = document.createElement("a");
const file = new Blob([content], {type: contentType});
a.href = URL.createObjectURL(file);
a.download = fileName;
a.click();
}
dataToFile(JSON.stringify(data), 'results.json', 'application/json');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment