Skip to content

Instantly share code, notes, and snippets.

@sgimeno
Last active August 29, 2015 13:57
Show Gist options
  • Save sgimeno/9685555 to your computer and use it in GitHub Desktop.
Save sgimeno/9685555 to your computer and use it in GitHub Desktop.
Getting localStorage usage
var usageInBytes = (encodeURI(JSON.stringify(localStorage)).split(/%..|./).length - 1);
var usageInKbytes = (encodeURI(JSON.stringify(localStorage)).split(/%..|./).length - 1)/1024;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment