MCPcopy 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
30module.exports = FreeList;

Callers 5

mainFunction · 0.95
freeParserFunction · 0.80
test-freelist.jsFile · 0.80
executeMethod · 0.80
executeMethod · 0.80

Calls 1

pushMethod · 0.45

Tested by

no test coverage detected