Created
December 3, 2021 12:33
-
-
Save rostyq/f41e4a7d021c993b48a8c76f79f4dc1b to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
(function() { | |
function popItem(key) { | |
const value = this.getItem(key); | |
this.removeItem(key); | |
return value; | |
} | |
window.localStorage.__proto__.popItem = popItem.bind(window.localStorage); | |
window.sessionStorage.__proto__.popItem = popItem.bind(window.sessionStorage); | |
})(); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment