exports = module.exports = EntityController; function EntityController () { this.entities = []; } EntityController.prototype = { add: function (id) { }, remove: function (id) { } };