MCPcopy Create free account
hub / github.com/anomalyco/opencode / add

Function add

packages/llm/src/route/executor.ts:168–172  ·  view source on GitHub ↗
(value: string)

Source from the content-addressed store, hash-verified

166const secretValues = (request: HttpClientRequest.HttpClientRequest) => {
167 const values = new Set<string>()
168 const add = (value: string) => {
169 if (value.length < 4) return
170 values.add(value)
171 values.add(encodeURIComponent(value))
172 }
173
174 Object.entries(request.headers).forEach(([name, value]) => {
175 if (!isSensitiveHeaderName(name)) return

Callers 1

secretValuesFunction · 0.70

Calls 1

addMethod · 0.65

Tested by

no test coverage detected