MCPcopy Index your code
hub / github.com/tinyplex/tinybase / objDel

Function objDel

docs/pseudo.esm.sh/tinybase@9.0.0/ui-react/index.js:78–81  ·  view source on GitHub ↗
(obj, id)

Source from the content-addressed store, hash-verified

76var objGet = (obj, id) => ifNotUndefined(obj, (obj2) => obj2[id]);
77var objHas = (obj, id) => id in obj;
78var objDel = (obj, id) => {
79 delete obj[id];
80 return obj;
81};
82var objSize = (obj) => size(objIds(obj));
83var objIsEqual = (obj1, obj2, isEqual2 = (value1, value2) => value1 === value2) => {
84 const entries1 = objEntries(obj1);

Callers 1

ProviderFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…