webzone/custom/toml/toml.ts

7 lines
172 B
TypeScript

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