Skip to content

Instantly share code, notes, and snippets.

@pseudosavant
Last active September 20, 2019 21:02
Show Gist options
  • Save pseudosavant/bfe8bba4302f465f5f21e038caae228a to your computer and use it in GitHub Desktop.
Save pseudosavant/bfe8bba4302f465f5f21e038caae228a to your computer and use it in GitHub Desktop.
Easy way to determine currently used space in localStorage
const totalSize = Object.values(localStorage).reduce((acc, c) => acc += c.length, 0);
const length = Object.values(localStorage).length;
console.log(`${length} entries using ${totalSize} bytes (${Math.floor(totalSize/length)} bytes/entry)`);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment