(buffer)
| 158 | } |
| 159 | |
| 160 | const onEnd = (buffer) => { |
| 161 | this.onData(buffer.toString()); |
| 162 | this.onDataRequestCleanup(); |
| 163 | res.cork(() => { |
| 164 | res.end("ok"); |
| 165 | }); |
| 166 | }; |
| 167 | |
| 168 | res.onAborted(() => { |
| 169 | this.onDataRequestCleanup(); |
nothing calls this directly
no test coverage detected