(j)
| 30 | |
| 31 | const server = net.createServer((connection) => { |
| 32 | function write(j) { |
| 33 | if (j >= N) { |
| 34 | connection.end(); |
| 35 | return; |
| 36 | } |
| 37 | setTimeout(() => { |
| 38 | connection.write('C'); |
| 39 | write(j + 1); |
| 40 | }, 10); |
| 41 | } |
| 42 | write(0); |
| 43 | }); |
| 44 |
no test coverage detected
searching dependent graphs…