MCPcopy Index your code
hub / github.com/callstack/agent-device / readBooleanParam

Function readBooleanParam

src/daemon/server/http-server.ts:189–192  ·  view source on GitHub ↗
(params: Record<string, unknown>, key: string)

Source from the content-addressed store, hash-verified

187}
188
189function readBooleanParam(params: Record<string, unknown>, key: string): boolean | undefined {
190 const value = params[key];
191 return typeof value === 'boolean' ? value : undefined;
192}
193
194function readRequiredGitHubArtifactText(
195 record: Record<string, unknown>,

Callers 1

Calls

no outgoing calls

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…