Skip to content

Instantly share code, notes, and snippets.

@3rd-Eden
Created October 21, 2011 11:35
Show Gist options
  • Save 3rd-Eden/1303626 to your computer and use it in GitHub Desktop.
Save 3rd-Eden/1303626 to your computer and use it in GitHub Desktop.
(function () {
var call = Function.prototype.call;
// override
Function.prototype.call = function () {
console.log('called', arguments.callee);
call.apply(call, arguments);
}
})();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment