MCPcopy Index your code
hub / github.com/getsentry/XcodeBuildMCP / boolToTag

Function boolToTag

src/utils/sentry.ts:196–201  ·  view source on GitHub ↗
(value: boolean | undefined)

Source from the content-addressed store, hash-verified

194}
195
196function boolToTag(value: boolean | undefined): string | undefined {
197 if (value === undefined) {
198 return undefined;
199 }
200 return String(value);
201}
202function setTagIfDefined(key: string, value: string | undefined): void {
203 if (!value) {
204 return;

Callers 1

applyRuntimeContextFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected