UNPKG

jacc

Version:

Just Another Cloud in the Cloud

14 lines (11 loc) 268 B
exports.isatty = function(){ return true; }; exports.getWindowSize = function(){ if ('innerHeight' in global) { return [global.innerHeight, global.innerWidth]; } else { // In a Web Worker, the DOM Window is not available. return [640, 480]; } };