Files
full-calendar-ics-converter/utils/jsonToFrontmatter.ts
2024-06-15 23:55:23 +02:00

7 lines
189 B
TypeScript

export default function jsonToFrontmatter(json: any): string {
return `---
${Object.entries(json)
.map(([key, value]) => `${key}: ${JSON.stringify(value)}`)
.join("\n")}
---`;
}