Last active
July 11, 2017 15:06
-
-
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
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// 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