UNPKG

generator-neonode

Version:

Yeoman generator to scaffold a Neonode Fullstack MVC Application

13 lines (10 loc) 284 B
var BaseController = Class('BaseController').includes(CustomEventSupport)({ beforeActions : [], prototype : { init : function (config){ this.name = this.constructor.className.replace('Controller', ''); return this; } } }); module.exports = BaseController;