Skip to content

Instantly share code, notes, and snippets.

@susemeee
Created November 3, 2020 11:07
Show Gist options
  • Save susemeee/8fa0158d115aed423fd9e66dc141ac04 to your computer and use it in GitHub Desktop.
Save susemeee/8fa0158d115aed423fd9e66dc141ac04 to your computer and use it in GitHub Desktop.
MagicHole
window.MagicHole = new Proxy(function () { console.log('MagicHole:call', arguments); return window.MagicHole; }, {
get(target, name) {
console.log('MagicHole:get', name);
return window.MagicHole;
},
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment