Skip to content

Instantly share code, notes, and snippets.

@valterbarros
Created January 21, 2023 11:32
Show Gist options
  • Save valterbarros/5b7544da95d2d16391f598f802ad4a02 to your computer and use it in GitHub Desktop.
Save valterbarros/5b7544da95d2d16391f598f802ad4a02 to your computer and use it in GitHub Desktop.
const orig = EventTarget.prototype.dispatchEvent;
EventTarget.prototype.dispatchEvent = function(...args) {
console.log('dispatch event', args)
return orig.apply(this, args);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment