WriteStream.prototype._refreshSize = function() { const oldCols = this.columns; const oldRows = this.rows; const winSize = new Array(2); const err = this._handle.getWindowSize(winSize); if (err) { this.emit('error', errors.errnoException(err, 'getWindowSize')); return; } const { 0: newCols, 1: newRows } = winSize; if (oldCols !== newCols || oldRows !== newRows) { this.columns = newCols; this.rows = newRows; this.emit('resize'); } }; // Backwards-compat WriteStream.prototype.cursorTo = function(x, y, callback) { if (readline === undefined) readline = require('readline'); return readline.cursorTo(this, x, y, callback); }; WriteStream.prototype.moveCursor = function(dx, dy, callback) { if (readline === undefined) readline = require('readline'); return readline.moveCursor(this, dx, dy, callback); }; WriteStream.prototype.clearLine = function(dir, callback) { if (readline === undefined) readline = require('readline'); return readline.clearLine(this, dir, callback); }; WriteStream.prototype.clearScreenDown = function(callback) { if (readline === undefined) readline = require('readline'); return readline.clearScreenDown(this, callback); }; WriteStream.prototype.getWindowSize = function() { return [this.columns, this.rows]; }; module.exports = { isatty, ReadStream, WriteStream };