mirror of
https://github.com/seejohnrun/haste-server.git
synced 2024-11-01 11:31:22 +00:00
8 lines
137 B
JavaScript
8 lines
137 B
JavaScript
|
|
||
|
exports.isatty = function(){
|
||
|
return true;
|
||
|
};
|
||
|
|
||
|
exports.getWindowSize = function(){
|
||
|
return [window.innerHeight, window.innerWidth];
|
||
|
};
|