(data: Record<string, unknown>)
| 431 | } |
| 432 | |
| 433 | function readDirectIosSelectorNode(data: Record<string, unknown>): SnapshotNode | undefined { |
| 434 | const nodes = data.nodes; |
| 435 | if (!Array.isArray(nodes)) return undefined; |
| 436 | const node = nodes[0]; |
| 437 | if (!node || typeof node !== 'object') return undefined; |
| 438 | return node as SnapshotNode; |
| 439 | } |
| 440 | |
| 441 | function parseGetTarget(req: DaemonRequest): |
| 442 | | { |
no outgoing calls
no test coverage detected