MCPcopy Index your code
hub / github.com/cameri/nostream / isPlainObject

Function isPlainObject

src/cli/utils/config.ts:23–25  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

21 }
22
23const isPlainObject = (value: unknown): value is Record<string, unknown> => {
24 return Boolean(value) && typeof value === 'object' && !Array.isArray(value)
25}
26
27const parsePath = (path: string): PathToken[] => {
28 const input = path.trim()

Callers 5

toSerializableFunction · 0.85
validateShapeFunction · 0.85
pathExistsInSchemaFunction · 0.85
getByPathFunction · 0.85
setByPathFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected