Skip to content

Instantly share code, notes, and snippets.

@sabesansathananthan
Created September 4, 2022 18:10
Show Gist options
  • Save sabesansathananthan/4f5dd02b9c0a67bfd85eb7ddf5b7fb68 to your computer and use it in GitHub Desktop.
Save sabesansathananthan/4f5dd02b9c0a67bfd85eb7ddf5b7fb68 to your computer and use it in GitHub Desktop.
How to override methods in localStorage?
const { setItem } = localStorage;
localStorage.setItem = function (key, value) {
console.log('localStorage.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