@@ -90,15 +90,15 @@ export default function timedOut(request: ClientRequest, delays: Delays, options
90
90
}
91
91
} ) ;
92
92
93
- if ( typeof delays . request !== ' undefined' ) {
93
+ if ( delays . request !== undefined ) {
94
94
const cancelTimeout = addTimeout ( delays . request , timeoutHandler , 'request' ) ;
95
95
96
96
once ( request , 'response' , ( response : IncomingMessage ) : void => {
97
97
once ( response , 'end' , cancelTimeout ) ;
98
98
} ) ;
99
99
}
100
100
101
- if ( typeof delays . socket !== ' undefined' ) {
101
+ if ( delays . socket !== undefined ) {
102
102
const { socket} = delays ;
103
103
104
104
const socketTimeoutHandler = ( ) : void => {
@@ -115,10 +115,10 @@ export default function timedOut(request: ClientRequest, delays: Delays, options
115
115
} ) ;
116
116
}
117
117
118
- const hasLookup = typeof delays . lookup !== ' undefined' ;
119
- const hasConnect = typeof delays . connect !== ' undefined' ;
120
- const hasSecureConnect = typeof delays . secureConnect !== ' undefined' ;
121
- const hasSend = typeof delays . send !== ' undefined' ;
118
+ const hasLookup = delays . lookup !== undefined ;
119
+ const hasConnect = delays . connect !== undefined ;
120
+ const hasSecureConnect = delays . secureConnect !== undefined ;
121
+ const hasSend = delays . send !== undefined ;
122
122
if ( hasLookup || hasConnect || hasSecureConnect || hasSend ) {
123
123
once ( request , 'socket' , ( socket : net . Socket ) : void => {
124
124
const { socketPath} = request as ClientRequest & { socketPath ?: string } ;
@@ -127,7 +127,7 @@ export default function timedOut(request: ClientRequest, delays: Delays, options
127
127
if ( socket . connecting ) {
128
128
const hasPath = Boolean ( socketPath ?? net . isIP ( hostname ?? host ?? '' ) !== 0 ) ;
129
129
130
- if ( hasLookup && ! hasPath && typeof ( socket . address ( ) as net . AddressInfo ) . address === ' undefined' ) {
130
+ if ( hasLookup && ! hasPath && ( socket . address ( ) as net . AddressInfo ) . address === undefined ) {
131
131
const cancelTimeout = addTimeout ( delays . lookup ! , timeoutHandler , 'lookup' ) ;
132
132
once ( socket , 'lookup' , cancelTimeout ) ;
133
133
}
@@ -168,14 +168,14 @@ export default function timedOut(request: ClientRequest, delays: Delays, options
168
168
} ) ;
169
169
}
170
170
171
- if ( typeof delays . response !== ' undefined' ) {
171
+ if ( delays . response !== undefined ) {
172
172
once ( request , 'upload-complete' , ( ) : void => {
173
173
const cancelTimeout = addTimeout ( delays . response ! , timeoutHandler , 'response' ) ;
174
174
once ( request , 'response' , cancelTimeout ) ;
175
175
} ) ;
176
176
}
177
177
178
- if ( typeof delays . read !== ' undefined' ) {
178
+ if ( delays . read !== undefined ) {
179
179
once ( request , 'response' , ( response : IncomingMessage ) : void => {
180
180
const cancelTimeout = addTimeout ( delays . read ! , timeoutHandler , 'read' ) ;
181
181
once ( response , 'end' , cancelTimeout ) ;
0 commit comments