Skip to content

Instantly share code, notes, and snippets.

@isaacs
Created December 10, 2012 05:02
Show Gist options
  • Save isaacs/4248499 to your computer and use it in GitHub Desktop.
Save isaacs/4248499 to your computer and use it in GitHub Desktop.
$ 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