UNPKG

250 BJavaScriptView Raw
1'use strict';
2
3module.exports = function (Terminal) {
4 Terminal.prototype.destroy = function() {
5 this.readable = false;
6 this.writable = false;
7 this._events = {};
8 this.handler = function() {};
9 this.write = function() {};
10 };
11};