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

Function isPluginStorageRecord

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

Source from the content-addressed store, hash-verified

831};
832
833const isPluginStorageRecord = (value: unknown): value is Readonly<Record<string, unknown>> =>
834 value !== null && typeof value === "object" && !Array.isArray(value);
835
836const pluginStorageWhereOperators = ["eq", "in", "gt", "gte", "lt", "lte"] as const;
837

Callers 2

pluginStorageDataFieldFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected