mirror of
https://github.com/nuintun/command-manager.git
synced 2025-06-08 12:14:03 +08:00
12 lines
248 B
JavaScript
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 (){};
|
|
};
|
|
};
|