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

Function isObject

docs/pseudo.esm.sh/tinybase@9.0.0/index.js:115–120  ·  view source on GitHub ↗
(obj)

Source from the content-addressed store, hash-verified

113var objFrozen = object.isFrozen;
114var objEntries = object.entries;
115var isObject = (obj) => !isNullish(obj) && ifNotNullish(
116 getPrototypeOf(obj),
117 (objPrototype) => objPrototype == object.prototype || isNullish(getPrototypeOf(objPrototype)),
118 /* istanbul ignore next */
119 () => true
120);
121var objIds = object.keys;
122var objFreeze = object.freeze;
123var objNew = (entries = []) => object.fromEntries(entries);

Callers 7

objIsEmptyFunction · 0.70
objIsEqualFunction · 0.70
objValidateFunction · 0.70
getCellOrValueTypeFunction · 0.70
encodeIfJsonFunction · 0.70
getSortedRowIdsFunction · 0.70
addSortedRowIdsListenerFunction · 0.70

Calls 2

isNullishFunction · 0.70
getPrototypeOfFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…