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

Function isUID

src/utils/nskeyedarchiver-parser.ts:43–50  ·  view source on GitHub ↗

* Checks if a value is a bplist UID reference

(value: unknown)

Source from the content-addressed store, hash-verified

41 * Checks if a value is a bplist UID reference
42 */
43function isUID(value: unknown): value is BplistUID {
44 return (
45 typeof value === 'object' &&
46 value !== null &&
47 'UID' in value &&
48 typeof (value as BplistUID).UID === 'number'
49 );
50}
51
52/**
53 * Resolves a UID to its value in the $objects array

Callers 4

resolveUIDFunction · 0.85
findDictWithKeyFunction · 0.85
getValueForKeyFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected