Browse Source

lib: changed var to const in linkedlist

PR-URL: https://github.com/nodejs/node/pull/8609
Reviewed-By: Brian White <mscdex@mscdex.net>
Reviewed-By: James M Snell <jasnell@gmail.com>
Reviewed-By: Colin Ihrig <cjihrig@gmail.com>
Reviewed-By: Michaël Zasso <targos@protonmail.com>
v7.x
Adri Van Houdt 8 years ago
committed by James M Snell
parent
commit
95780388c9
  1. 2
      lib/internal/linkedlist.js

2
lib/internal/linkedlist.js

@ -24,7 +24,7 @@ exports.peek = peek;
// remove the most idle item from the list
function shift(list) {
var first = list._idlePrev;
const first = list._idlePrev;
remove(first);
return first;
}

Loading…
Cancel
Save