Skip to content

Instantly share code, notes, and snippets.

@Microfed
Last active July 25, 2016 08:17
Show Gist options
  • Save Microfed/f132f0b5141588802508592f9ce083aa to your computer and use it in GitHub Desktop.
Save Microfed/f132f0b5141588802508592f9ce083aa to your computer and use it in GitHub Desktop.
function throwError() {
throw new Error('Text of the error');
}
function reportError() {
window.onerror.apply(window, arguments);
}
window.onerror = console.log.bind(console);
setTimeout(throwError, 1000);
setTimeout(reportError.bind(null, "report error by hand!"), 1000);
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment