We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 58f9b6d commit 9578038Copy full SHA for 9578038
lib/internal/linkedlist.js
@@ -24,7 +24,7 @@ exports.peek = peek;
24
25
// remove the most idle item from the list
26
function shift(list) {
27
- var first = list._idlePrev;
+ const first = list._idlePrev;
28
remove(first);
29
return first;
30
}
0 commit comments