2015-11-24 19:00:34 +08:00

12 lines
248 B
JavaScript

'use strict';
module.exports = function (Terminal){
Terminal.prototype.destroy = function (){
this.readable = false;
this.writable = false;
this._events = {};
this.handler = function (){};
this.write = function (){};
};
};