MCPcopy Create free account
hub / github.com/TanStack/db / isPlainObject

Function isPlainObject

packages/db/src/query/builder/index.ts:967–974  ·  view source on GitHub ↗
(value: any)

Source from the content-addressed store, hash-verified

965}
966
967function isPlainObject(value: any): value is Record<string, any> {
968 return (
969 value !== null &&
970 typeof value === `object` &&
971 !isExpressionLike(value) &&
972 !value.__refProxy
973 )
974}
975
976function buildNestedSelect(
977 obj: any,

Callers 2

buildNestedSelectFunction · 0.85
buildIncludesSubqueryFunction · 0.85

Calls 1

isExpressionLikeFunction · 0.85

Tested by

no test coverage detected