MCPcopy 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.
10function peek(list) {
11 if (list._idlePrev === list) return null;
12 return list._idlePrev;
13}
14
15// Remove an item from its list.
16function remove(item) {

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected