Skip to content

Instantly share code, notes, and snippets.

@1f0
Last active August 27, 2018 12:50
Show Gist options
  • Save 1f0/4dee9a68252680a322329412949756a5 to your computer and use it in GitHub Desktop.
Save 1f0/4dee9a68252680a322329412949756a5 to your computer and use it in GitHub Desktop.
download anything use blob in console
content = JSON.stringify(SOMETHING);
blob = new Blob([content],{type:"octet/stream"});
url = window.URL.createObjectURL(blob);
console.log(url);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment