MCPcopy Create free account
hub / github.com/ICBNetwork/web3-Wallet / dropObject

Function dropObject

ppom/src/ppom.js:42–46  ·  view source on GitHub ↗
(idx)

Source from the content-addressed store, hash-verified

40function getObject(idx) { return heap[idx]; }
41
42function dropObject(idx) {
43 if (idx < 132) return;
44 heap[idx] = heap_next;
45 heap_next = idx;
46}
47
48function takeObject(idx) {
49 const ret = getObject(idx);

Callers 1

takeObjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected