(app, address)
| 38 | // }; |
| 39 | |
| 40 | function Request(app, address) { |
| 41 | this.data = []; |
| 42 | this.header = {}; |
| 43 | this.app = app; |
| 44 | this.server = app; |
| 45 | this.addr = address || this.server.address(); |
| 46 | } |
| 47 | |
| 48 | /** |
| 49 | * Inherit from `EventEmitter.prototype`. |
nothing calls this directly
no outgoing calls
no test coverage detected