Skip to content

Instantly share code, notes, and snippets.

@wmira
Last active February 8, 2016 07:39
Show Gist options
  • Save wmira/bcbdeed32329ee29fd7d to your computer and use it in GitHub Desktop.
Save wmira/bcbdeed32329ee29fd7d to your computer and use it in GitHub Desktop.
Exception Handler
export const toStackOverflowOnError = function(f) {
  return function() {
      try {
          f(...Array.from(arguments));
      } catch ( e ) {
          window.location.href = 'http://stackoverflow.com/search?q=[js]+e.message';
      }
    
  }  
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment