★ wanayoo — archive 1999 https://github.com/nodejs/node/commit/88da3af6f6Nouvelle recherche | Portail wanayoo
Skip to content
Permalink
Browse files
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>
  • Loading branch information
elliementalle authored and MylesBorins committed Nov 17, 2019
1 parent 70ad676 commit 88da3af6f647903b199e601ed8e2c28e1a3cf7f6
Showing with 1 addition and 1 deletion.
  1. +1 −1 lib/https.js
@@ -158,7 +158,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)

0 comments on commit 88da3af

Please sign in to comment.