Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created September 4, 2022 18:31
Show Gist options
  • Save sabesansathananthan/54f62d3a6cd6469096dae50ba636d51f to your computer and use it in GitHub Desktop.
Save sabesansathananthan/54f62d3a6cd6469096dae50ba636d51f to your computer and use it in GitHub Desktop.
How to override methods in localStorage?
const { setItem } = localStorage.__proto__;
localStorage.setItem = function (key, value) {
console.log('localStorage.__proto__.setItem', key, value);
setItem.call(this, key, value);
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment