Skip to content

Commit 52604fd

Browse files
g-prokofyevatargos
authored andcommitted
https: change var to let in lib/https.js
Changed a variable declaration. PR-URL: #30320 Reviewed-By: Colin Ihrig <cjihrig@gmail.com> Reviewed-By: Trivikram Kamat <trivikr.dev@gmail.com> Reviewed-By: Anna Henningsen <anna@addaleax.net> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Сковорода Никита Андреевич <chalkerx@gmail.com> Reviewed-By: Jiawen Geng <technicalcute@gmail.com> Reviewed-By: Gireesh Punathil <gpunathi@in.ibm.com>
1 parent 7267396 commit 52604fd

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/https.js

Lines changed: 1 addition & 1 deletion
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)