Last active
May 20, 2018 11:44
-
-
Save sagirk/9b5681981d036bfc753f50bf77c90ca4 to your computer and use it in GitHub Desktop.
Improving runWithDebugger
This file contains hidden or 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
function runWithDebugger(callback, args) { | |
debugger; | |
callback.apply(null, args); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment