Skip to content

Instantly share code, notes, and snippets.

// CM: forked to address key size (not just value size), swapping between KB and MB, ordering by size and logging total localstorage size.
// based on answer to question
// http://stackoverflow.com/questions/4391575/how-to-find-the-size-of-localstorage
(function showLocalStorageSize() {
threshold = 256; // the point where we stop displaying KB and start with MB
function stringSizeBytes(str) {
return str.length * 2;
}