· 8 years ago · Jan 22, 2018, 12:16 AM
1// makeClass - By John Resig (MIT Licensed)
2function makeClass(){
3 return function(args){
4 if ( this instanceof arguments.callee ) {
5 if ( typeof this.init == "function" )
6 this.init.apply( this, args.callee ? args : arguments );
7 } else
8 return new arguments.callee( arguments );
9 };
10}