MCPcopy Create free account
hub / github.com/chhoumann/quickadd / isRecord

Function isRecord

src/utils/userScriptSecrets.ts:52–54  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

50};
51
52function isRecord(value: unknown): value is Record<string, unknown> {
53 return value !== null && typeof value === "object";
54}
55
56function getSecretStorage(app: App | undefined): SecretStorageLike | undefined {
57 return app?.secretStorage as SecretStorageLike | undefined;

Calls

no outgoing calls

Tested by

no test coverage detected