Skip to content

Instantly share code, notes, and snippets.

@rostyq
Created December 3, 2021 12:33
Show Gist options
  • Save rostyq/f41e4a7d021c993b48a8c76f79f4dc1b to your computer and use it in GitHub Desktop.
Save rostyq/f41e4a7d021c993b48a8c76f79f4dc1b to your computer and use it in GitHub Desktop.
(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