Created
November 9, 2017 14:41
-
-
Save macfire/aba3ca1014153c0317fff1e01fce7369 to your computer and use it in GitHub Desktop.
Javascript console helpers
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
/** | |
* Short version to window.console.log() | |
*/ | |
var LOG = LOG || console.log.bind(console); | |
/** | |
* Display function caller | |
* Put at beginning of a function to determine who called the function | |
*/ | |
// Display function name only | |
var _caller = arguments.callee.caller.toString().split("{"); | |
LOG("This function called from " + _caller[0]); | |
// Display full function | |
var _caller_full = arguments.callee.caller.toString(); | |
LOG("This function called from " + _caller_full); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment