(value: string | undefined)
| 1 | function normalizeNonEmpty(value: string | undefined): string | undefined { |
| 2 | const trimmed = value?.trim(); |
| 3 | return trimmed ? trimmed : undefined; |
| 4 | } |
| 5 | |
| 6 | export function resolveIosSimulatorDeviceSetPath( |
| 7 | flagValue: string | undefined, |
no outgoing calls
no test coverage detected
searching dependent graphs…