MCPcopy
hub / github.com/freshframework/fresh / delete

Method delete

packages/fresh/src/test_utils.ts:41–45  ·  view source on GitHub ↗
(path: string)

Source from the content-addressed store, hash-verified

39 return await this.handler(req, STUB);
40 }
41 async delete(path: string): Promise<Response> {
42 const url = this.toUrl(path);
43 const req = new Request(url, { method: "delete" });
44 return await this.handler(req, STUB);
45 }
46 async head(path: string): Promise<Response> {
47 const url = this.toUrl(path);
48 const req = new Request(url, { method: "head" });

Callers

nothing calls this directly

Calls 2

toUrlMethod · 0.95
handlerMethod · 0.80

Tested by

no test coverage detected