Upsilon-VsCode/Client/node_modules/mocha/lib/browser/tty.js

14 lines
292 B
JavaScript
Raw Normal View History

2019-02-17 17:07:28 +00:00
'use strict';
exports.isatty = function isatty () {
return true;
};
exports.getWindowSize = function getWindowSize () {
if ('innerHeight' in global) {
return [global.innerHeight, global.innerWidth];
}
// In a Web Worker, the DOM Window is not available.
return [640, 480];
};