1
0
mirror of https://github.com/seejohnrun/haste-server.git synced 2025-12-24 23:23:37 +00:00
Files
haste-server/node_modules/mocha/lib/browser/tty.js
2012-02-06 14:09:01 -05:00

8 lines
137 B
JavaScript

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