Created
June 1, 2012 22:37
-
-
Save iangilman/2855532 to your computer and use it in GitHub Desktop.
useful JavaScript snippets
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
// from http://ianloic.com/2011/09/07/simply-logging-javascript-calls/ | |
function logCall() { | |
console.log(logCall.caller.name + '(' + | |
Array.prototype.slice.call(logCall.caller.arguments) | |
.map(JSON.stringify).join(', ') + | |
')'); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment