I want to check that my object properties and method or anything else is called or not? for example,
// functions 
   function app(){
      return {
        name : 'Md Tahazzot',
        info : function(){
           return this.name;
        }   
      };
   }
Now if I call this like app(), I mean In this case I am not called any of the object properties or methods. So, Is it possible to check this that I am called only the function nothing else like this app().name ?
 
    