()
| 26101 | let buffersLength = 0; |
| 26102 | const buffers = []; |
| 26103 | function read() { |
| 26104 | const b7 = socket.read(); |
| 26105 | if (b7) |
| 26106 | ondata(b7); |
| 26107 | else |
| 26108 | socket.once("readable", read); |
| 26109 | } |
| 26110 | function cleanup() { |
| 26111 | socket.removeListener("end", onend); |
| 26112 | socket.removeListener("error", onerror); |
no test coverage detected
searching dependent graphs…