tty.js 275 B

1234567891011
  1. exports.isatty = function isatty() {
  2. return true;
  3. };
  4. exports.getWindowSize = function getWindowSize() {
  5. if ('innerHeight' in global) {
  6. return [global.innerHeight, global.innerWidth];
  7. }
  8. // In a Web Worker, the DOM Window is not available.
  9. return [640, 480];
  10. };