(value: unknown)
| 330 | * Only returns true for literal true or "true" string. |
| 331 | */ |
| 332 | export function parseBooleanFrontmatter(value: unknown): boolean { |
| 333 | return value === true || value === 'true' |
| 334 | } |
| 335 | |
| 336 | /** |
| 337 | * Shell values accepted in `shell:` frontmatter for .md `!`-block execution. |
no outgoing calls
no test coverage detected