MCPcopy Index your code
hub / github.com/angular/angular / isObject

Function isObject

packages/forms/signals/src/util/type_guards.ts:19–21  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

17 * Checks if a value is an object.
18 */
19export function isObject(value: unknown): value is Record<PropertyKey, unknown> {
20 return (typeof value === 'object' || typeof value === 'function') && value != null;
21}

Callers 5

isContainerNodeFunction · 0.90
extractChildrenFunction · 0.90
getFunction · 0.90
computeChildrenMapFunction · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…