MCPcopy Create free account
hub / github.com/Acode-Foundation/Acode / isPlainObject

Function isPlainObject

src/cm/lsp/clientManager.ts:130–132  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

128}
129
130function isPlainObject(value: unknown): value is Record<string, unknown> {
131 return !!value && typeof value === "object" && !Array.isArray(value);
132}
133
134function resolveInitializationOptions(
135 server: LspServerDefinition,

Callers 2

connectClientFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected