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>
v4.x
Adri Van Houdt 8 years ago
committed by Myles Borins
parent
commit
3b448a7f12
  1. 2
      lib/_linklist.js

2
lib/_linklist.js

@ -17,7 +17,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