Skip to content

Instantly share code, notes, and snippets.

@glynrob
Created January 12, 2013 19:19
Show Gist options
  • Save glynrob/4520053 to your computer and use it in GitHub Desktop.
Save glynrob/4520053 to your computer and use it in GitHub Desktop.
Get current size of localStorage
function sizeofAllStorage(){ // provide the size in bytes of the data currently stored
var size = 0;
for (i=0; i<=localStorage.length-1; i++)
{
key = localStorage.key(i);
size += lengthInUtf8Bytes(localStorage.getItem(key));
}
return size;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment