22
22
'use strict' ;
23
23
24
24
const {
25
- ArrayPrototypeIncludes,
26
- ArrayPrototypeIndexOf,
27
- ArrayPrototypePop,
28
- ArrayPrototypePush,
29
- ArrayPrototypeShift,
30
- ArrayPrototypeSome,
31
- ArrayPrototypeSplice,
32
- FunctionPrototypeCall,
33
25
NumberParseInt,
34
26
ObjectKeys,
35
27
ObjectSetPrototypeOf,
36
28
ObjectValues,
37
- RegExpPrototypeExec,
38
- StringPrototypeIndexOf,
39
- StringPrototypeSplit,
40
- StringPrototypeStartsWith,
41
- StringPrototypeSubstring,
42
29
Symbol,
43
30
} = primordials ;
44
31
@@ -92,7 +79,7 @@ function Agent(options) {
92
79
if ( ! ( this instanceof Agent ) )
93
80
return new Agent ( options ) ;
94
81
95
- FunctionPrototypeCall ( EventEmitter , this ) ;
82
+ EventEmitter . call ( this ) ;
96
83
97
84
this . defaultPort = 80 ;
98
85
this . protocol = 'http:' ;
@@ -139,7 +126,7 @@ function Agent(options) {
139
126
140
127
const requests = this . requests [ name ] ;
141
128
if ( requests && requests . length ) {
142
- const req = ArrayPrototypeShift ( requests ) ;
129
+ const req = requests . shift ( ) ;
143
130
const reqAsyncRes = req [ kRequestAsyncResource ] ;
144
131
if ( reqAsyncRes ) {
145
132
// Run request within the original async context.
@@ -185,7 +172,7 @@ function Agent(options) {
185
172
this . removeSocket ( socket , options ) ;
186
173
187
174
socket . once ( 'error' , freeSocketErrorListener ) ;
188
- ArrayPrototypePush ( freeSockets , socket ) ;
175
+ freeSockets . push ( socket ) ;
189
176
} ) ;
190
177
191
178
// Don't emit keylog events unless there is a listener for them.
@@ -264,11 +251,11 @@ Agent.prototype.addRequest = function addRequest(req, options, port/* legacy */,
264
251
let socket ;
265
252
if ( freeSockets ) {
266
253
while ( freeSockets . length && freeSockets [ 0 ] . destroyed ) {
267
- ArrayPrototypeShift ( freeSockets ) ;
254
+ freeSockets . shift ( ) ;
268
255
}
269
256
socket = this . scheduling === 'fifo' ?
270
- ArrayPrototypeShift ( freeSockets ) :
271
- ArrayPrototypePop ( freeSockets ) ;
257
+ freeSockets . shift ( ) :
258
+ freeSockets . pop ( ) ;
272
259
if ( ! freeSockets . length )
273
260
delete this . freeSockets [ name ] ;
274
261
}
@@ -280,7 +267,7 @@ Agent.prototype.addRequest = function addRequest(req, options, port/* legacy */,
280
267
asyncResetHandle ( socket ) ;
281
268
this . reuseSocket ( socket , req ) ;
282
269
setRequestSocket ( this , req , socket ) ;
283
- ArrayPrototypePush ( this . sockets [ name ] , socket ) ;
270
+ this . sockets [ name ] . push ( socket ) ;
284
271
} else if ( sockLen < this . maxSockets &&
285
272
this . totalSocketCount < this . maxTotalSockets ) {
286
273
debug ( 'call onSocket' , sockLen , freeLen ) ;
@@ -303,7 +290,7 @@ Agent.prototype.addRequest = function addRequest(req, options, port/* legacy */,
303
290
// Used to capture the original async context.
304
291
req [ kRequestAsyncResource ] = new AsyncResource ( 'QueuedRequest' ) ;
305
292
306
- ArrayPrototypePush ( this . requests [ name ] , req ) ;
293
+ this . requests [ name ] . push ( req ) ;
307
294
}
308
295
} ;
309
296
@@ -326,7 +313,7 @@ Agent.prototype.createSocket = function createSocket(req, options, cb) {
326
313
if ( ! this . sockets [ name ] ) {
327
314
this . sockets [ name ] = [ ] ;
328
315
}
329
- ArrayPrototypePush ( this . sockets [ name ] , s ) ;
316
+ this . sockets [ name ] . push ( s ) ;
330
317
this . totalSocketCount ++ ;
331
318
debug ( 'sockets' , name , this . sockets [ name ] . length , this . totalSocketCount ) ;
332
319
installListeners ( this , s , options ) ;
@@ -357,16 +344,16 @@ function calculateServerName(options, req) {
357
344
// abc:123 => abc
358
345
// [::1] => ::1
359
346
// [::1]:123 => ::1
360
- if ( StringPrototypeStartsWith ( hostHeader , '[' ) ) {
361
- const index = StringPrototypeIndexOf ( hostHeader , ']' ) ;
347
+ if ( hostHeader . startsWith ( '[' ) ) {
348
+ const index = hostHeader . indexOf ( ']' ) ;
362
349
if ( index === - 1 ) {
363
350
// Leading '[', but no ']'. Need to do something...
364
351
servername = hostHeader ;
365
352
} else {
366
- servername = StringPrototypeSubstring ( hostHeader , 1 , index ) ;
353
+ servername = hostHeader . substring ( 1 , index ) ;
367
354
}
368
355
} else {
369
- servername = StringPrototypeSplit ( hostHeader , ':' , 1 ) [ 0 ] ;
356
+ servername = hostHeader . split ( ':' , 1 ) [ 0 ] ;
370
357
}
371
358
}
372
359
// Don't implicitly set invalid (IP) servernames.
@@ -398,9 +385,7 @@ function installListeners(agent, s, options) {
398
385
// Destroy if in free list.
399
386
// TODO(ronag): Always destroy, even if not in free list.
400
387
const sockets = agent . freeSockets ;
401
- if ( ArrayPrototypeSome ( ObjectKeys ( sockets ) , ( name ) =>
402
- ArrayPrototypeIncludes ( sockets [ name ] , s ) ,
403
- ) ) {
388
+ if ( ObjectKeys ( sockets ) . some ( ( name ) => sockets [ name ] . includes ( s ) ) ) {
404
389
return s . destroy ( ) ;
405
390
}
406
391
}
@@ -432,15 +417,15 @@ Agent.prototype.removeSocket = function removeSocket(s, options) {
432
417
433
418
// If the socket was destroyed, remove it from the free buffers too.
434
419
if ( ! s . writable )
435
- ArrayPrototypePush ( sets , this . freeSockets ) ;
420
+ sets . push ( this . freeSockets ) ;
436
421
437
422
for ( let sk = 0 ; sk < sets . length ; sk ++ ) {
438
423
const sockets = sets [ sk ] ;
439
424
440
425
if ( sockets [ name ] ) {
441
- const index = ArrayPrototypeIndexOf ( sockets [ name ] , s ) ;
426
+ const index = sockets [ name ] . indexOf ( s ) ;
442
427
if ( index !== - 1 ) {
443
- ArrayPrototypeSplice ( sockets [ name ] , index , 1 ) ;
428
+ sockets [ name ] . splice ( index , 1 ) ;
444
429
// Don't leak
445
430
if ( sockets [ name ] . length === 0 )
446
431
delete sockets [ name ] ;
@@ -493,7 +478,7 @@ Agent.prototype.keepSocketAlive = function keepSocketAlive(socket) {
493
478
const keepAliveHint = socket . _httpMessage . res . headers [ 'keep-alive' ] ;
494
479
495
480
if ( keepAliveHint ) {
496
- const hint = RegExpPrototypeExec ( / ^ t i m e o u t = ( \d + ) / , keepAliveHint ) ?. [ 1 ] ;
481
+ const hint = / ^ t i m e o u t = ( \d + ) / . exec ( keepAliveHint ) ?. [ 1 ] ;
497
482
498
483
if ( hint ) {
499
484
const serverHintTimeout = NumberParseInt ( hint ) * 1000 ;
0 commit comments