Skip to content

Commit 52604fd

Browse files
galinaprokofevatargos
authored andcommitted
https: change var to let in lib/https.js
Changed a variable declaration. PR-URL: #30320 Reviewed-By: Colin Ihrig <[email protected]> Reviewed-By: Trivikram Kamat <[email protected]> Reviewed-By: Anna Henningsen <[email protected]> Reviewed-By: Ruben Bridgewater <[email protected]> Reviewed-By: Сковорода Никита Андреевич <[email protected]> Reviewed-By: Jiawen Geng <[email protected]> Reviewed-By: Gireesh Punathil <[email protected]>
1 parent 7267396 commit 52604fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/https.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ Object.setPrototypeOf(Agent, HttpAgent);
162162
Agent.prototype.createConnection = createConnection;
163163

164164
Agent.prototype.getName = function getName(options) {
165-
var name = HttpAgent.prototype.getName.call(this, options);
165+
let name = HttpAgent.prototype.getName.call(this, options);
166166

167167
name += ':';
168168
if (options.ca)

0 commit comments

Comments
 (0)