Skip to content

Instantly share code, notes, and snippets.

View alexmargineanu's full-sized avatar

Alexandru Margineanu alexmargineanu

  • Bucharest
View GitHub Profile
@alexmargineanu
alexmargineanu / savestorage.js
Last active October 28, 2016 10:16
save local storage content
var _myArray = JSON.stringify(localStorage , null, 4);
var vLink = document.createElement('a'),
vBlob = new Blob([_myArray], {type: "octet/stream"}),
vName = 'data.json',
vUrl = window.URL.createObjectURL(vBlob);
vLink.setAttribute('href', vUrl);
vLink.setAttribute('download', vName );
vLink.click();