Skip to content

Commit

Permalink
https: change var to let in lib/https.js
Browse files Browse the repository at this point in the history
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]>
  • Loading branch information
galinaprokofeva authored and MylesBorins committed Dec 17, 2019
1 parent d8046fc commit eceeed7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/https.js
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Object.setPrototypeOf(Agent, HttpAgent);
Agent.prototype.createConnection = createConnection;

Agent.prototype.getName = function getName(options) {
var name = HttpAgent.prototype.getName.call(this, options);
let name = HttpAgent.prototype.getName.call(this, options);

name += ':';
if (options.ca)
Expand Down

0 comments on commit eceeed7

Please sign in to comment.