mirror of
https://github.com/seejohnrun/haste-server
synced 2025-07-16 10:03:45 -07:00
8 lines
No EOL
137 B
JavaScript
8 lines
No EOL
137 B
JavaScript
|
|
exports.isatty = function(){
|
|
return true;
|
|
};
|
|
|
|
exports.getWindowSize = function(){
|
|
return [window.innerHeight, window.innerWidth];
|
|
}; |