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

Function isPluginStorageRecord

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

Source from the content-addressed store, hash-verified

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

Callers 2

pluginStorageDataFieldFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected