MCPcopy
hub / github.com/graphql/graphql-js / isObjectLike

Function isObjectLike

src/jsutils/isObjectLike.ts:7–11  ·  view source on GitHub ↗
(
  value: unknown,
)

Source from the content-addressed store, hash-verified

5 * @internal
6 */
7export function isObjectLike(
8 value: unknown,
9): value is { [key: string]: unknown } {
10 return typeof value == 'object' && value !== null;
11}

Callers 15

toJSONDeepFunction · 0.90
validateInputValueImplFunction · 0.90
getCaughtErrorMessageFunction · 0.90
coerceInputValueFunction · 0.90
valueToLiteralFunction · 0.90
astFromValueFunction · 0.90
buildClientSchemaFunction · 0.90
coerceOutputValueObjectFunction · 0.90
uncoerceDefaultValueFunction · 0.90
constructorMethod · 0.90

Calls

no outgoing calls

Tested by

no test coverage detected