MCPcopy Index your code
hub / github.com/callumalpass/tasknotes / isRecord

Function isRecord

src/api/TaskNotesAPI.ts:3385–3387  ·  view source on GitHub ↗
(value: unknown)

Source from the content-addressed store, hash-verified

3383}
3384
3385function isRecord(value: unknown): value is Record<string, unknown> {
3386 return typeof value === "object" && value !== null && !Array.isArray(value);
3387}
3388
3389function buildTaskChanges(before?: TaskInfo, after?: TaskInfo): TaskNotesApiChanges {
3390 const changes: TaskNotesApiChanges = {};

Callers 8

normalizeRuntimeSortsMethod · 0.70
normalizeRuntimeScopeFunction · 0.70
normalizeRuntimeValueFunction · 0.70
toFilterConditionValueFunction · 0.70

Calls

no outgoing calls

Tested by

no test coverage detected