Skip to content

Instantly share code, notes, and snippets.

@johnmichel
Last active July 11, 2017 15:06
Show Gist options
  • Save johnmichel/8eebc23aa6a3c5a3a4751b28d36faf28 to your computer and use it in GitHub Desktop.
Save johnmichel/8eebc23aa6a3c5a3a4751b28d36faf28 to your computer and use it in GitHub Desktop.
throwDebugger is useful for tapping into a stream to check details about an event
// usage:
// .tap(event => throwDebugger(event))
// or
// function foo(event) {
// throwDebugger(event);
// // code that requires a closer look
// }
const throwDebugger = function throwDebugger(event) {
console.log('event is', event);
debugger;
};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment