Skip to content
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
lib: change var into let
Changed a variable declaration.
  • Loading branch information
g-prokofyeva committed Nov 6, 2019
commit d3fa68ea53ae8aa7fc422bb48e94cf0ab7c75fd7
2 changes: 1 addition & 1 deletion lib/https.js
Original file line number Diff line number Diff line change
Expand Up @@ -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)
Expand Down