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

Function isFrontmatterRecord

src/utils/taskIdentification.ts:10–12  ·  view source on GitHub ↗
(frontmatter: unknown)

Source from the content-addressed store, hash-verified

8>;
9
10function isFrontmatterRecord(frontmatter: unknown): frontmatter is Record<string, unknown> {
11 return Boolean(frontmatter) && typeof frontmatter === "object" && !Array.isArray(frontmatter);
12}
13
14export function compareTaskPropertyIdentifierValue(
15 frontmatterValue: unknown,

Callers 1

isTaskFrontmatterFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected