Skip to content
Closed
Changes from 1 commit
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
Prev Previous commit
http: convert var to let or const internal http source in lib
  • Loading branch information
BeniCheni committed Mar 8, 2019
commit d5cee9661c1df6e56e45c0a5f659f49e2ab4c5f0
4 changes: 2 additions & 2 deletions lib/internal/http.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@

const { setUnrefTimeout } = require('internal/timers');

var nowCache;
var utcCache;
let nowCache;
let utcCache;

function nowDate() {
if (!nowCache) cache();
Expand Down