File: /var/www/vhost/disk-apps/pwa.sports-crowd.com/node_modules/@oclif/screen/lib/screen.js
"use strict";
Object.defineProperty(exports, "__esModule", { value: true });
exports.errtermwidth = exports.stdtermwidth = void 0;
function termwidth(stream) {
if (!stream.isTTY) {
return 80;
}
const width = stream.getWindowSize()[0];
if (width < 1) {
return 80;
}
if (width < 40) {
return 40;
}
return width;
}
const columns = global.columns;
exports.stdtermwidth = columns || termwidth(process.stdout);
exports.errtermwidth = columns || termwidth(process.stderr);
process.stdout.on('resize', () => {
exports.stdtermwidth = columns || termwidth(process.stdout);
});
process.stderr.on('resize', () => {
exports.errtermwidth = columns || termwidth(process.stderr);
});