MCPcopy Index your code
hub / github.com/Effect-TS/effect / patch

Function patch

packages/platform/src/internal/httpClient.ts:124–126  ·  view source on GitHub ↗
(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl)

Source from the content-addressed store, hash-verified

122 return this.execute(internalRequest.put(url, options))
123 },
124 patch(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) {
125 return this.execute(internalRequest.patch(url, options))
126 },
127 del(this: Client.HttpClient, url: string | URL, options?: ClientRequest.Options.NoUrl) {
128 return this.execute(internalRequest.del(url, options))
129 },

Callers 1

httpRouter.tsFile · 0.70

Calls 2

patchMethod · 0.65
executeMethod · 0.45

Tested by

no test coverage detected