Skip to content

Instantly share code, notes, and snippets.

@NrI3
Last active July 23, 2017 13:40
Show Gist options
  • Select an option

  • Save NrI3/afef82d3bcb2a722b57dc29546bc06ca to your computer and use it in GitHub Desktop.

Select an option

Save NrI3/afef82d3bcb2a722b57dc29546bc06ca to your computer and use it in GitHub Desktop.
[JS] Downloader text as file.
window.stringToFile = function(content,name){
var o = document.createElement('a');
o.type = 'application/octet-stream';
o.target = '_blank';
o.download = name;
o.href = URL.createObjectURL(new Blob([content],{type:'text/plain'}))
console.log('Downloading ..');
o.click();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment