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

16 lines
467 B
TypeScript
Raw Normal View History

2022-04-05 15:02:17 +00:00
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();
},
2022-04-04 09:51:41 +00:00
"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();
},
};
}