MCPcopy Create free account
hub / github.com/UsefulSoftwareCo/executor / isPluginStorageRecord

Function isPluginStorageRecord

packages/core/sdk/src/executor.ts:1079–1080  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

1077};
1078
1079const isPluginStorageRecord = (value: unknown): value is Readonly<Record<string, unknown>> =>
1080 value !== null && typeof value === "object" && !Array.isArray(value);
1081
1082const pluginStorageWhereOperators = ["eq", "in", "gt", "gte", "lt", "lte"] as const;
1083

Callers 2

pluginStorageDataFieldFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected