Skip to content

Instantly share code, notes, and snippets.

@RadLikeWhoa
Last active December 20, 2015 13:29
Show Gist options
  • Select an option

  • Save RadLikeWhoa/6139483 to your computer and use it in GitHub Desktop.

Select an option

Save RadLikeWhoa/6139483 to your computer and use it in GitHub Desktop.
function getStorageSize () {
var size = 3
for (var prop in localStorage) {
size += ((localStorage[prop].length * 16) / (8 * 1024))
}
return size
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment