haste-server/node_modules/mocha/lib/browser/tty.js

8 lines
137 B
JavaScript

exports.isatty = function(){
return true;
};
exports.getWindowSize = function(){
return [window.innerHeight, window.innerWidth];
};