dns-landing-page/custom/toml/toml.ts
Sam Therapy e4335d3eb0
migrate to an SSG
Signed-off-by: Sam Therapy <sam@samtherapy.net>
2023-02-17 19:09:22 +01:00

7 lines
177 B
TypeScript

import { parse } from "std/encoding/toml.ts"
export default async function toml(path: string | URL) {
const content = await Deno.readTextFile(path)
return parse(content)
}