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

Function isPluginStorageRecord

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

Source from the content-addressed store, hash-verified

1068};
1069
1070const isPluginStorageRecord = (value: unknown): value is Readonly<Record<string, unknown>> =>
1071 value !== null && typeof value === "object" && !Array.isArray(value);
1072
1073const pluginStorageWhereOperators = ["eq", "in", "gt", "gte", "lt", "lte"] as const;
1074

Callers 2

pluginStorageDataFieldFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected