(charCode)
| 38 | } |
| 39 | |
| 40 | const stdout = (charCode) => { |
| 41 | if (charCode) { |
| 42 | postMessage({ |
| 43 | type: "stdout", |
| 44 | stdout: charCode, |
| 45 | }); |
| 46 | } else { |
| 47 | console.log(typeof charCode, charCode); |
| 48 | } |
| 49 | }; |
| 50 | |
| 51 | const stderr = (charCode) => { |
| 52 | if (charCode) { |
nothing calls this directly
no test coverage detected
searching dependent graphs…