/ Published in: JavaScript
Compiled with Closure Compiler: (function(a){var b=arguments.callee;if(this==window)return a&&b.call(a),b})();
Expand |
Embed | Plain Text
/** * 1. Running as an anonymous function without arguments, * return an function. * * 2. Running as an anonymous function with an argument, * do something to the argument as being a method of the argument. * * 3. Running as an method, * do something. */ javascript:(function(instance) { var ee = arguments.callee; if (this == window) { if (instance) ee.call(instance); return ee; } // <body> // // </body> // })();
You need to login to post a comment.
