mirror of
https://github.com/SrIzan10/full-calendar-ics-converter.git
synced 2026-06-06 00:47:04 +00:00
7 lines
189 B
TypeScript
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")}
|
|
---`;
|
|
} |