Code
Hub
Workspaces
Following
Digest
Agents
Trending
Connect
MCP
copy
Index your code
hub
/
github.com/nodejs/node
/ peek
Function
peek
lib/internal/linkedlist.js:10–13 ·
view source on GitHub ↗
(list)
Source
from the content-addressed store, hash-verified
8
9
// Show the most idle item.
10
function
peek(list) {
11
if
(list._idlePrev === list)
return
null;
12
return
list._idlePrev;
13
}
14
15
// Remove an item from its list.
16
function
remove(item) {
Callers
1
round_robin_handle.js
File · 0.50
Calls
no outgoing calls
Tested by
no test coverage detected