Created
December 10, 2012 05:02
-
-
Save isaacs/4248499 to your computer and use it in GitHub Desktop.
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
$ cat > x.js | |
// watch this. | |
console.log(arguments.callee.toString() + ' is the function that was called'); | |
^D | |
$ node x.js | |
function (exports, require, module, __filename, __dirname) { // watch this. | |
console.log(arguments.callee.toString() + ' is the function that was called'); | |
} is the function that was called |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment