(devices: DeviceInfo[])
| 370 | } |
| 371 | |
| 372 | function isAppleDeviceCandidateSet(devices: DeviceInfo[]): boolean { |
| 373 | return devices.length > 0 && devices.every((device) => isApplePlatform(device.platform)); |
| 374 | } |
| 375 | |
| 376 | function isIpadDeviceName(name: string): boolean { |
| 377 | return /\bipad\b/i.test(name); |
no test coverage detected