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