Skip to content

Instantly share code, notes, and snippets.

@whitehat101
Last active March 28, 2017 16:19
Show Gist options
  • Save whitehat101/dcfcbac20b91dc822ddcdd7fdfe86c16 to your computer and use it in GitHub Desktop.
Save whitehat101/dcfcbac20b91dc822ddcdd7fdfe86c16 to your computer and use it in GitHub Desktop.
Measure HTML5 localStorage (in MB)
(function(chars, index) {
for (chars = index = 0; index < localStorage.length; index++ )
chars += localStorage.getItem(localStorage.key(index)).length
return `${(chars/1024/1024).toPrecision(5)} MB ≈${(chars/5/1024/1024*100).toPrecision(3)}%`
})()
@whitehat101
Copy link
Author

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment