MCPcopy
hub / github.com/Effect-TS/effect / head

Function head

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

Source from the content-addressed store, hash-verified

113 return this.execute(internalRequest.get(url, options))
114 },
115 head(this: Client.HttpClient, url: string | URL, options?: ClientRequest.Options.NoBody) {
116 return this.execute(internalRequest.head(url, options))
117 },
118 post(this: Client.HttpClient, url: string | URL, options: ClientRequest.Options.NoUrl) {
119 return this.execute(internalRequest.post(url, options))
120 },

Callers 1

httpRouter.tsFile · 0.70

Calls 2

headMethod · 0.80
executeMethod · 0.45

Tested by

no test coverage detected