SilverBullet pivot to become an offline-first PWA (#403)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
import { syscall } from "./syscall.ts";
|
||||
|
||||
export function parse(
|
||||
text: string,
|
||||
): Promise<any> {
|
||||
return syscall("yaml.parse", text);
|
||||
}
|
||||
|
||||
export function stringify(
|
||||
obj: any,
|
||||
): Promise<string> {
|
||||
return syscall("yaml.stringify", obj);
|
||||
}
|
||||
Reference in New Issue
Block a user