Skip to content

Instantly share code, notes, and snippets.

@johnatandias
Last active June 25, 2020 23:25
Show Gist options
  • Save johnatandias/127cacae76556f6191a1f6416f7510e9 to your computer and use it in GitHub Desktop.
Save johnatandias/127cacae76556f6191a1f6416f7510e9 to your computer and use it in GitHub Desktop.
Listen to all events
(() => {
Object.keys(window).map(property => {
if (property.startsWith('on')) {
window[property] = event => console.log('=>', event.type, { event })
}
})
})()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment