Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
9
10
11
12
13
import { fetch } from "https://esm.town/v/std/fetch";
export function deleteVal({ token, id }: {
token: string;
id: string;
}): Promise<Response> {
return fetch("https://api.val.town/v1/vals/" + id, {
headers: {
Authorization: `Bearer ${token}`,
},
method: "DELETE",
});
}
October 23, 2023