(options)
| 19 | ]; |
| 20 | |
| 21 | function createLocalConnection(options) { |
| 22 | options.host = undefined; |
| 23 | options.port = this.port; |
| 24 | options.path = undefined; |
| 25 | return net.createConnection(options); |
| 26 | } |
| 27 | |
| 28 | http.createServer(common.mustCall(function(req, res) { |
| 29 | this.requests ||= 0; |
nothing calls this directly
no test coverage detected
searching dependent graphs…