UNPKG

olive_oil

Version:

A namespace handler,class factory and inheritance handler

12 lines 244 B
module.exports={ parent:'Child', email:null, generation:3, init:function(name,surName,email){ this._super(name,surName); this.email=email; }, toString:function(){ return this._super()+' and my email is '+this.email; } }