Skip to content

Instantly share code, notes, and snippets.

@parties
Last active September 29, 2016 20:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save parties/13ca53e02013b29bb0f5418a92c74902 to your computer and use it in GitHub Desktop.
Save parties/13ca53e02013b29bb0f5418a92c74902 to your computer and use it in GitHub Desktop.
count characters in local storage
var getStorageSize = function() {
return Object.keys(window.localStorage).map(function(key) {
return window.localStorage.getItem(key).length;
}).reduce(function(prev, curr) {
return prev + curr;
});
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment