Code
Hub
Workspaces
Connect
Indexed graphs
Engine
MCP
copy
Index your code
hub
/
github.com/nodejs/node
/ free
Method
free
lib/internal/freelist.js:21–27 ·
view source on GitHub ↗
(obj)
Source
from the content-addressed store, hash-verified
19
}
20
21
free(obj) {
22
if
(this.list.length < this.max) {
23
this.list.push(obj);
24
return
true;
25
}
26
return
false;
27
}
28
}
29
30
module.exports = FreeList;
Callers
5
main
Function · 0.95
freeParser
Function · 0.80
test-freelist.js
File · 0.80
execute
Method · 0.80
execute
Method · 0.80
Calls
1
push
Method · 0.45
Tested by
no test coverage detected