import { syscall } from "./syscall.ts"; export function parse( text: string, ): Promise { return syscall("yaml.parse", text); } export function stringify( obj: any, ): Promise { return syscall("yaml.stringify", obj); }