Files
JellySport/ProjectSourceCode/node_modules/mocha/lib/browser/tty.js
2024-04-11 04:23:19 -06:00

14 lines
290 B
JavaScript

'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];
};