MCPcopy Create free account
hub / github.com/apache/maka / isObjectLike

Function isObjectLike

packages/runtime/src/request-shape.ts:693–695  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

691}
692
693function isObjectLike(value: unknown): value is Record<string, unknown> {
694 return typeof value === 'object' && value !== null;
695}
696
697function isPlainObject(value: unknown): value is Record<string, unknown> {
698 if (!isObjectLike(value)) return false;

Callers 12

anthropicThinkingBudgetFunction · 0.85
toolLabelFunction · 0.85
schemaShapeForHashFunction · 0.85
contentShapeForHashFunction · 0.85
canonicalizeFunction · 0.85
isPlainObjectFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected