1
0
silverbullet/plugos/syscalls/fetch.node.ts

16 lines
462 B
TypeScript
Raw Normal View History

import fetch, {RequestInfo, RequestInit} from "node-fetch";
import {SysCallMapping} from "../system";
2022-03-25 11:03:06 +00:00
export function fetchSyscalls(): SysCallMapping {
return {
"fetch.json": async (ctx, url: RequestInfo, init: RequestInit) => {
2022-03-25 11:03:06 +00:00
let resp = await fetch(url, init);
return resp.json();
},
"fetch.text": async(ctx, url: RequestInfo, init: RequestInit) => {
2022-03-25 11:03:06 +00:00
let resp = await fetch(url, init);
return resp.text();
},
};
}