Skip to content

Instantly share code, notes, and snippets.

@zlatkov
Created January 5, 2021 11:50
Show Gist options
  • Save zlatkov/702e065a5b68de2556ed44aaa8457ae0 to your computer and use it in GitHub Desktop.
Save zlatkov/702e065a5b68de2556ed44aaa8457ae0 to your computer and use it in GitHub Desktop.
var oldOnErrorHandler = window.onerror;
window.onerror = (msg, url, line, column, err) => {
If (oldOnErrorHandler) {
// Call any previously assigned handler.
oldOnErrorHandler.apply(this, arguments);
}
// The rest of your code
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment