Skip to content

Instantly share code, notes, and snippets.

@AshKyd
Created May 29, 2024 01:38
Show Gist options
  • Save AshKyd/35486c7b7fcf82d949e85452410e8848 to your computer and use it in GitHub Desktop.
Save AshKyd/35486c7b7fcf82d949e85452410e8848 to your computer and use it in GitHub Desktop.
Spy on video element methods and log when & where they're called from
['pause', 'play'].forEach(method => {
const oldMethod = video[method];
video[method] = function () {
console.log(`${method} (dom call)`, { video, e: new Error('here') });
return oldMethod.apply(video);
};
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment