UNPKG

290 BJavaScriptView Raw
1'use strict';
2
3exports.isatty = function isatty() {
4 return true;
5};
6
7exports.getWindowSize = function getWindowSize() {
8 if ('innerHeight' in global) {
9 return [global.innerHeight, global.innerWidth];
10 }
11 // In a Web Worker, the DOM Window is not available.
12 return [640, 480];
13};