UNPKG

@gigsboat/cli

Version:

Do you have a boatload of speaking gigs? Use this CLI to manage them all!

9 lines (7 loc) 238 B
import frontMatter from 'front-matter' import { readFile } from 'fs/promises' export async function convertToJson(filePath) { const fileContent = await readFile(filePath, 'utf8') const json = frontMatter(fileContent) return json }