6 lines
180 B
TypeScript
6 lines
180 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);
|
|
}
|