()
| 75 | } |
| 76 | |
| 77 | function child() { |
| 78 | let received = 0; |
| 79 | process.stdin.on('data', mustCallAtLeast((c) => { |
| 80 | received += c.length; |
| 81 | })); |
| 82 | process.stdin.on('end', mustCall(() => { |
| 83 | // This console.log is part of the test. |
| 84 | console.log(received); |
| 85 | })); |
| 86 | } |
no test coverage detected
searching dependent graphs…