nci/lib/command/base.js
2014-05-10 14:19:47 +04:00

24 lines
428 B
JavaScript

'use strict';
var EventEmitter = require('events').EventEmitter,
inherits = require('util').inherits;
function Command(params) {
params = params || {};
this.isEmit = params.isEmit;
}
exports.BaseCommand = Command;
inherits(Command, EventEmitter);
Command.prototype.enableEmitter = function() {
this.isEmit = true;
return this;
};
Command.prototype.disableEmitter = function() {
this.isEmit = false;
return this;
};