MCPcopy
hub / github.com/stampit-org/stampit / isObject

Function isObject

stampit.ts:437–439  ·  view source on GitHub ↗
(obj: any)

Source from the content-addressed store, hash-verified

435}
436
437function isObject(obj: any): boolean {
438 return (obj && typeof obj === "object") || isFunction(obj);
439}
440
441function isPlainObject(value: any): boolean {
442 return value && typeof value === "object" && value.__proto__ === Object.prototype;

Callers 3

mergeAssignFunction · 0.85
mergeComposableFunction · 0.85
standardiseDescriptorFunction · 0.85

Calls 1

isFunctionFunction · 0.70

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…